1.00.0
C++ Simulated Airline Schedule Manager Library
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
SegmentStruct.hpp
Go to the documentation of this file.
1
#ifndef __AIRSCHED_BOM_SEGMENTSTRUCT_HPP
2
#define __AIRSCHED_BOM_SEGMENTSTRUCT_HPP
3
4
// //////////////////////////////////////////////////////////////////////
5
// Import section
6
// //////////////////////////////////////////////////////////////////////
7
// STL
8
#include <string>
9
#include <vector>
10
// StdAir
11
#include <stdair/stdair_basic_types.hpp>
12
#include <stdair/basic/StructAbstract.hpp>
13
// AirSched
14
#include <
airsched/bom/SegmentCabinStruct.hpp
>
15
16
// Forward declarations
17
namespace
stdair {
18
class
SegmentDate;
19
}
20
21
namespace
AIRSCHED {
22
24
struct
SegmentStruct
:
public
stdair::StructAbstract {
25
// Attributes
26
stdair::AirportCode_T
_boardingPoint
;
27
stdair::Date_T
_boardingDate
;
28
stdair::Duration_T
_boardingTime
;
29
stdair::AirportCode_T
_offPoint
;
30
stdair::Date_T
_offDate
;
31
stdair::Duration_T
_offTime
;
32
stdair::Duration_T
_elapsed
;
33
SegmentCabinStructList_T
_cabinList
;
34
37
void
fill
(stdair::SegmentDate&)
const
;
38
40
const
std::string
describe
()
const
;
41
};
42
44
typedef
std::vector<SegmentStruct>
SegmentStructList_T
;
45
46
}
47
#endif // __AIRSCHED_BOM_SEGMENTSTRUCT_HPP
Generated on Thu May 23 2013 16:57:53 for AirSched by
1.8.3.1