1.00.8
C++ Standard Airline IT Object Library
BomHolderKey.cpp
Go to the documentation of this file.
1
// //////////////////////////////////////////////////////////////////////
2
// Import section
3
// //////////////////////////////////////////////////////////////////////
4
// STL
5
#include <ostream>
6
#include <sstream>
7
// StdAir
8
#include <
stdair/bom/BomHolderKey.hpp
>
9
10
namespace
stdair
{
11
12
// ////////////////////////////////////////////////////////////////////
13
BomHolderKey::BomHolderKey
() {
14
}
15
16
// ////////////////////////////////////////////////////////////////////
17
BomHolderKey::~BomHolderKey
() {
18
}
19
20
// ////////////////////////////////////////////////////////////////////
21
void
BomHolderKey::toStream
(std::ostream& ioOut)
const
{
22
ioOut <<
"BomHolderKey: "
<<
toString
() << std::endl;
23
}
24
25
// ////////////////////////////////////////////////////////////////////
26
void
BomHolderKey::fromStream
(std::istream& ioIn) {
27
}
28
29
// ////////////////////////////////////////////////////////////////////
30
const
std::string
BomHolderKey::toString
()
const
{
31
std::ostringstream oStr;
32
oStr <<
" -- HOLDER -- "
;
33
return
oStr.str();
34
}
35
36
}
stdair::BomHolderKey::~BomHolderKey
~BomHolderKey()
Definition:
BomHolderKey.cpp:17
stdair::BomHolderKey::fromStream
void fromStream(std::istream &ioIn)
Definition:
BomHolderKey.cpp:26
stdair::BomHolderKey::toStream
void toStream(std::ostream &ioOut) const
Definition:
BomHolderKey.cpp:21
BomHolderKey.hpp
stdair::BomHolderKey::BomHolderKey
BomHolderKey()
Definition:
BomHolderKey.cpp:13
stdair
Handle on the StdAir library context.
Definition:
BasChronometer.cpp:9
stdair::BomHolderKey::toString
const std::string toString() const
Definition:
BomHolderKey.cpp:30
Generated for StdAir by
1.8.17