0.45.1
C++ Standard Airline IT Object Library
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
AirlineFeatureKey.cpp
Go to the documentation of this file.
1
// //////////////////////////////////////////////////////////////////////
2
// Import section
3
// //////////////////////////////////////////////////////////////////////
4
// STL
5
#include <sstream>
6
// StdAir
7
#include <
stdair/bom/AirlineFeatureKey.hpp
>
8
9
namespace
stdair {
10
11
// ////////////////////////////////////////////////////////////////////
12
AirlineFeatureKey::AirlineFeatureKey
(
const
AirlineCode_T
& iAirlineCode)
13
: _airlineCode (iAirlineCode) {
14
}
15
16
// ////////////////////////////////////////////////////////////////////
17
AirlineFeatureKey::~AirlineFeatureKey
() {
18
}
19
20
// ////////////////////////////////////////////////////////////////////
21
void
AirlineFeatureKey::toStream
(std::ostream& ioOut)
const
{
22
ioOut <<
"AirlineFeatureKey: "
<<
toString
() << std::endl;
23
}
24
25
// ////////////////////////////////////////////////////////////////////
26
void
AirlineFeatureKey::fromStream
(std::istream& ioIn) {
27
}
28
29
// ////////////////////////////////////////////////////////////////////
30
const
std::string
AirlineFeatureKey::toString
()
const
{
31
std::ostringstream oStr;
32
oStr << _airlineCode;
33
return
oStr.str();
34
}
35
36
}
Generated on Mon Aug 27 2012 21:34:02 for StdAir by
1.8.1.2