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
ServiceInitialisationType.hpp
Go to the documentation of this file.
1
#ifndef __STDAIR_BAS_SERVICEINITIALISATIONTYPE_HPP
2
#define __STDAIR_BAS_SERVICEINITIALISATIONTYPE_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
17
struct
ServiceInitialisationType
:
public
StructAbstract
{
18
public
:
19
typedef
enum
{
20
NOT_YET_INITIALISED
= 0,
21
FILE_PARSING
,
22
BUILTIN_SAMPLE
,
23
LAST_VALUE
24
}
EN_ServiceInitialisationType
;
25
30
static
const
std::string&
getLabel
(
const
EN_ServiceInitialisationType
&);
31
35
static
EN_ServiceInitialisationType
getType
(
const
char
);
36
40
static
char
getTypeLabel
(
const
EN_ServiceInitialisationType
&);
41
45
static
std::string
46
getTypeLabelAsString
(
const
EN_ServiceInitialisationType
&);
47
51
static
std::string
describeLabels
();
52
56
EN_ServiceInitialisationType
getType
()
const
;
57
61
char
getTypeAsChar
()
const
;
62
66
std::string
getTypeAsString
()
const
;
67
72
const
std::string
describe
()
const
;
73
74
public
:
78
bool
operator==
(
const
EN_ServiceInitialisationType
&)
const
;
79
80
public
:
84
ServiceInitialisationType
(
const
EN_ServiceInitialisationType
&);
88
ServiceInitialisationType
(
const
char
iType);
92
ServiceInitialisationType
(
const
std::string& iType);
96
ServiceInitialisationType
(
const
ServiceInitialisationType
&);
97
98
private
:
102
ServiceInitialisationType
();
103
104
105
private
:
109
static
const
std::string _labels[
LAST_VALUE
];
113
static
const
char
_typeLabels[
LAST_VALUE
];
114
115
private
:
116
// //////// Attributes /////////
120
EN_ServiceInitialisationType
_type;
121
};
122
123
}
124
#endif // __STDAIR_BAS_SERVICEINITIALISATIONTYPE_HPP
Generated on Sat Dec 22 2012 16:51:53 for StdAir by
1.8.1.1