StdAir Logo  1.00.17
C++ Standard Airline IT Object Library
Loading...
Searching...
No Matches
YieldStore.cpp
Go to the documentation of this file.
1// //////////////////////////////////////////////////////////////////////
2// Import section
3// //////////////////////////////////////////////////////////////////////
4// STL
5#include <cassert>
6#include <sstream>
7// StdAir
9
10namespace stdair {
11
12 // ////////////////////////////////////////////////////////////////////
13 YieldStore::YieldStore (const Key_T& iKey) : _key (iKey), _parent (NULL) {
14 }
15
16 // ////////////////////////////////////////////////////////////////////
19
20 // ////////////////////////////////////////////////////////////////////
21 std::string YieldStore::toString() const {
22 std::ostringstream oStr;
23 oStr << _key.toString();
24 return oStr.str();
25 }
26
27}
28
Handle on the StdAir library context.
YieldStoreKey Key_T
BomAbstract * _parent
std::string toString() const
YieldStore(const Key_T &)