1/*
2================================================================================
3    PROJECT:
4
5        John Eddy's Genetic Algorithms (JEGA)
6
7    CONTENTS:
8
9        Inline methods of class ParameterExtractor.
10
11    NOTES:
12
13        See notes of ParameterExtractor.hpp.
14
15    PROGRAMMERS:
16
17        John Eddy (jpeddy@sandia.gov) (JE)
18
19    ORGANIZATION:
20
21        Sandia National Laboratories
22
23    COPYRIGHT:
24
25        See the LICENSE file in the top level JEGA directory.
26
27    VERSION:
28
29        2.0.0
30
31    CHANGES:
32
33        Tue Feb 28 09:53:33 2006 - Original Version (JE)
34
35================================================================================
36*/
37
38
39
40
41/*
42================================================================================
43Document This File
44================================================================================
45*/
46/** \file
47 * \brief Contains the inline methods of the ParameterExtractor class.
48 */
49
50
51
52
53/*
54================================================================================
55Includes
56================================================================================
57*/
58
59
60
61
62
63
64
65
66/*
67================================================================================
68Begin Namespace
69================================================================================
70*/
71namespace JEGA {
72    namespace Utilities {
73
74
75
76
77
78/*
79================================================================================
80Inline Mutators
81================================================================================
82*/
83
84
85
86
87
88
89
90
91/*
92================================================================================
93Inline Accessors
94================================================================================
95*/
96
97
98
99
100
101
102
103
104/*
105================================================================================
106Inline Public Methods
107================================================================================
108*/
109
110
111
112
113
114
115
116
117/*
118================================================================================
119Inline Subclass Visible Methods
120================================================================================
121*/
122
123
124
125
126
127
128
129
130/*
131================================================================================
132Inline Private Methods
133================================================================================
134*/
135
136
137
138
139
140
141
142
143/*
144================================================================================
145Inline Structors
146================================================================================
147*/
148
149
150
151
152
153
154
155
156/*
157================================================================================
158End Namespace
159================================================================================
160*/
161    } // namespace Utilities
162} // namespace JEGA
163
164