1.01.0
C++ Simulated Airline Travel Solution Provider Library
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
SegmentCabinStruct.cpp
Go to the documentation of this file.
1
// //////////////////////////////////////////////////////////////////////
2
// Import section
3
// //////////////////////////////////////////////////////////////////////
4
// STL
5
#include <cassert>
6
#include <sstream>
7
// StdAir
8
#include <stdair/bom/SegmentCabin.hpp>
9
// AirTSP
10
#include <
airtsp/bom/SegmentCabinStruct.hpp
>
11
12
namespace
AIRTSP {
13
14
// //////////////////////////////////////////////////////////////////////
15
const
std::string
SegmentCabinStruct::describe
()
const
{
16
std::ostringstream ostr;
17
ostr <<
" "
<<
_cabinCode
<<
" "
<<
_classes
;
18
return
ostr.str();
19
}
20
21
// //////////////////////////////////////////////////////////////////////
22
void
SegmentCabinStruct::fill
(stdair::SegmentCabin& ioSegmentCabin)
const
{
23
}
24
25
}
Generated on Sun Jun 9 2013 12:36:19 for AirTSP by
1.8.3.1