1.00.0
C++ Simulated Travel-Oriented Distribution System Library
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
RDSParameters.cpp
Go to the documentation of this file.
1
// //////////////////////////////////////////////////////////////////////
2
// Import section
3
// //////////////////////////////////////////////////////////////////////
4
// STL
5
#include <sstream>
6
#include <cassert>
7
// TVLSIM
8
#include <
tvlsim/bom/RDSParameters.hpp
>
9
10
namespace
TVLSIM {
11
12
// ////////////////////////////////////////////////////////////////////
13
RDSParameters::RDSParameters
() {
14
}
15
16
// ////////////////////////////////////////////////////////////////////
17
RDSParameters::RDSParameters
(
const
RDSParameters
& iRDSParameters)
18
: _scheduleInputFilename (iRDSParameters._scheduleInputFilename) {
19
}
20
21
// ////////////////////////////////////////////////////////////////////
22
RDSParameters::~RDSParameters
() {
23
}
24
25
// ////////////////////////////////////////////////////////////////////
26
void
RDSParameters::toStream
(std::ostream& ioOut)
const
{
27
ioOut <<
describe
();
28
}
29
30
// ////////////////////////////////////////////////////////////////////
31
void
RDSParameters::fromStream
(std::istream& ioIn) {
32
}
33
34
35
// ////////////////////////////////////////////////////////////////////
36
const
std::string
RDSParameters::describe
()
const
{
37
std::ostringstream ostr;
38
39
ostr <<
"RDS Parameters: "
<< std::endl;
40
41
ostr <<
" Schedule file: "
<<
_scheduleInputFilename
;
42
ostr << std::endl;
43
44
return
ostr.str();
45
}
46
47
}
Generated on Wed Dec 26 2012 01:13:38 for TvlSim by
1.8.1.1