1.00.0
C++ Standard Airline IT Object Library
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
UnconstrainingMethod.hpp
Go to the documentation of this file.
1
#ifndef __STDAIR_BAS_UNCONSTRAININGMETHOD_HPP
2
#define __STDAIR_BAS_UNCONSTRAININGMETHOD_HPP
3
4
// //////////////////////////////////////////////////////////////////////
5
// Import section
6
// //////////////////////////////////////////////////////////////////////
7
// STL
8
#include <string>
9
// StdAir
10
#include <
stdair/basic/StructAbstract.hpp
>
11
12
namespace
stdair {
13
15
struct
UnconstrainingMethod
:
public
StructAbstract
{
16
public
:
17
typedef
enum
{
18
EM
= 0,
19
LAST_VALUE
20
}
EN_UnconstrainingMethod
;
21
23
static
const
std::string&
getLabel
(
const
EN_UnconstrainingMethod
&);
24
26
static
char
getMethodLabel
(
const
EN_UnconstrainingMethod
&);
27
29
static
std::string
getMethodLabelAsString
(
const
EN_UnconstrainingMethod
&);
30
32
static
std::string
describeLabels
();
33
35
EN_UnconstrainingMethod
getMethod
()
const
;
36
38
std::string
getMethodAsString
()
const
;
39
42
const
std::string
describe
()
const
;
43
44
public
:
46
bool
operator==
(
const
EN_UnconstrainingMethod
&)
const
;
47
48
public
:
50
UnconstrainingMethod
(
const
EN_UnconstrainingMethod
&);
52
UnconstrainingMethod
(
const
char
iMethod);
54
UnconstrainingMethod
(
const
UnconstrainingMethod
&);
55
56
private
:
58
UnconstrainingMethod
();
59
60
61
private
:
63
static
const
std::string _labels[
LAST_VALUE
];
65
static
const
char
_methodLabels[
LAST_VALUE
];
66
67
68
private
:
69
// //////// Attributes /////////
71
EN_UnconstrainingMethod
_method;
72
};
73
74
}
75
#endif // __STDAIR_BAS_UNCONSTRAININGMETHOD_HPP
Generated on Sat Dec 22 2012 16:51:53 for StdAir by
1.8.1.1