StdAir Logo  1.00.3
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
9 
10 namespace stdair {
11 
12  // ////////////////////////////////////////////////////////////////////
14  }
15 
16  // ////////////////////////////////////////////////////////////////////
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 }
const std::string toString() const
Handle on the StdAir library context.
void toStream(std::ostream &ioOut) const
void fromStream(std::istream &ioIn)