1.00.0
C++ Standard Airline IT Object Library
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
BomRoot.cpp
Go to the documentation of this file.
1
// //////////////////////////////////////////////////////////////////////
2
// Import section
3
// //////////////////////////////////////////////////////////////////////
4
// STL
5
#include <cassert>
6
#include <sstream>
7
// StdAir
8
#include <
stdair/basic/BasConst_General.hpp
>
9
#include <
stdair/bom/BomManager.hpp
>
10
#include <
stdair/bom/BomRoot.hpp
>
11
#include <
stdair/bom/InventoryKey.hpp
>
12
#include <
stdair/bom/Inventory.hpp
>
13
14
namespace
stdair {
15
16
// ////////////////////////////////////////////////////////////////////
17
BomRoot::BomRoot
() {
18
assert (
false
);
19
}
20
21
// ////////////////////////////////////////////////////////////////////
22
BomRoot::BomRoot
(
const
BomRoot
& iBomRoot) :
23
_key (iBomRoot._key), _frat5CurveHolder (iBomRoot._frat5CurveHolder),
24
_ffDisutilityCurveHolder (iBomRoot._ffDisutilityCurveHolder) {
25
}
26
27
// ////////////////////////////////////////////////////////////////////
28
BomRoot::BomRoot
(
const
Key_T
& iKey) : _key (iKey) {
29
}
30
31
// ////////////////////////////////////////////////////////////////////
32
BomRoot::~BomRoot
() {
33
}
34
35
// ////////////////////////////////////////////////////////////////////
36
std::string
BomRoot::toString
()
const
{
37
std::ostringstream oStr;
38
oStr <<
_key
.
toString
();
39
return
oStr.str();
40
}
41
42
// ////////////////////////////////////////////////////////////////////
43
Inventory
*
BomRoot::getInventory
(
const
std::string& iInventoryKeyStr)
const
{
44
Inventory
* oInventory_ptr =
45
BomManager::getObjectPtr<Inventory> (*
this
, iInventoryKeyStr);
46
return
oInventory_ptr;
47
}
48
49
// ////////////////////////////////////////////////////////////////////
50
Inventory
*
BomRoot::getInventory
(
const
InventoryKey
& iInventoryKey)
const
{
51
return
getInventory
(iInventoryKey.
toString
());
52
}
53
54
}
Generated on Sat Dec 22 2012 16:51:53 for StdAir by
1.8.1.1