StdAir Logo  1.00.18
C++ Standard Airline IT Object Library
Loading...
Searching...
No Matches
BomHolderKey.cpp
Go to the documentation of this file.
1// //////////////////////////////////////////////////////////////////////
2// Import section
3// //////////////////////////////////////////////////////////////////////
4// STL
5#include <ostream>
6#include <sstream>
7// StdAir
9
10namespace stdair {
11
12 // ////////////////////////////////////////////////////////////////////
15
16 // ////////////////////////////////////////////////////////////////////
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}
Handle on the StdAir library context.
void fromStream(std::istream &ioIn)
const std::string toString() const
void toStream(std::ostream &ioOut) const