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
OptimisationMethod.hpp
Go to the documentation of this file.
1
#ifndef __STDAIR_BAS_OPTIMISATIONMETHOD_HPP
2
#define __STDAIR_BAS_OPTIMISATIONMETHOD_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
OptimisationMethod
:
public
StructAbstract
{
16
public
:
17
typedef
enum
{
18
LEG_BASED_MC
= 0,
19
LEG_BASED_EMSR_B
,
20
LAST_VALUE
21
}
EN_OptimisationMethod
;
22
25
static
const
std::string&
getLabel
(
const
EN_OptimisationMethod
&);
26
28
static
char
getMethodLabel
(
const
EN_OptimisationMethod
&);
29
31
static
std::string
getMethodLabelAsString
(
const
EN_OptimisationMethod
&);
32
34
static
std::string
describeLabels
();
35
37
EN_OptimisationMethod
getMethod
()
const
;
38
40
std::string
getMethodAsString
()
const
;
41
44
const
std::string
describe
()
const
;
45
46
public
:
48
bool
operator==
(
const
EN_OptimisationMethod
&)
const
;
49
50
public
:
52
OptimisationMethod
(
const
EN_OptimisationMethod
&);
54
OptimisationMethod
(
const
char
iMethod);
56
OptimisationMethod
(
const
OptimisationMethod
&);
57
58
private
:
60
OptimisationMethod
();
61
62
63
private
:
65
static
const
std::string _labels[
LAST_VALUE
];
67
static
const
char
_methodLabels[
LAST_VALUE
];
68
69
70
private
:
71
// //////// Attributes /////////
73
EN_OptimisationMethod
_method;
74
};
75
76
}
77
#endif // __STDAIR_BAS_OPTIMISATIONMETHOD_HPP
Generated on Sat Dec 22 2012 16:51:53 for StdAir by
1.8.1.1