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
PreOptimisationMethod.hpp
Go to the documentation of this file.
1
#ifndef __STDAIR_BAS_PREOPTIMISATIONMETHOD_HPP
2
#define __STDAIR_BAS_PREOPTIMISATIONMETHOD_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
PreOptimisationMethod
:
public
StructAbstract
{
16
public
:
17
typedef
enum
{
18
NONE
= 0,
19
FA
,
20
MRT
,
21
LAST_VALUE
22
}
EN_PreOptimisationMethod
;
23
25
static
const
std::string&
getLabel
(
const
EN_PreOptimisationMethod
&);
26
28
static
char
getMethodLabel
(
const
EN_PreOptimisationMethod
&);
29
31
static
std::string
getMethodLabelAsString
(
const
EN_PreOptimisationMethod
&);
32
34
static
std::string
describeLabels
();
35
37
EN_PreOptimisationMethod
getMethod
()
const
;
38
40
std::string
getMethodAsString
()
const
;
41
43
const
std::string
describe
()
const
;
44
45
public
:
47
bool
operator==
(
const
EN_PreOptimisationMethod
&)
const
;
48
49
public
:
51
PreOptimisationMethod
(
const
EN_PreOptimisationMethod
&);
53
PreOptimisationMethod
(
const
char
iMethod);
55
PreOptimisationMethod
(
const
PreOptimisationMethod
&);
56
57
private
:
59
PreOptimisationMethod
();
60
61
62
private
:
64
static
const
std::string _labels[
LAST_VALUE
];
66
static
const
char
_methodLabels[
LAST_VALUE
];
67
68
69
private
:
70
// //////// Attributes /////////
72
EN_PreOptimisationMethod
_method;
73
};
74
75
}
76
#endif // __STDAIR_BAS_PREOPTIMISATIONMETHOD_HPP
Generated on Sat Dec 22 2012 16:51:53 for StdAir by
1.8.1.1