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.hpp
Go to the documentation of this file.
1
#ifndef __TVLSIM_BOM_RDSPARAMETERS_HPP
2
#define __TVLSIM_BOM_RDSPARAMETERS_HPP
3
4
// //////////////////////////////////////////////////////////////////////////
5
// Import section
6
// //////////////////////////////////////////////////////////////////////////
7
// StdAir
8
#include <stdair/basic/StructAbstract.hpp>
9
10
namespace
TVLSIM {
11
13
struct
RDSParameters
:
public
stdair::StructAbstract {
14
15
public
:
16
// //////// GETTERS /////////
18
const
std::string&
getScheduleInputFilename
()
const
{
19
return
_scheduleInputFilename
;
20
}
21
22
// //////// SETTERS /////////
24
void
setScheduleInputFilename
(
const
std::string& iInputFilename) {
25
_scheduleInputFilename
= iInputFilename;
26
}
27
28
// /////////// Display support method /////////////
31
void
toStream
(std::ostream& ioOut)
const
;
32
35
void
fromStream
(std::istream& ioIn);
36
38
const
std::string
describe
()
const
;
39
40
41
public
:
43
RDSParameters
();
44
RDSParameters
(
const
RDSParameters
&);
45
47
~RDSParameters
();
48
49
public
:
50
// ////////// Attributes ///////////
52
std::string
_scheduleInputFilename
;
53
};
54
55
}
56
#endif //__TVLSIM_BOM_RDSPARAMETERS_HPP
Generated on Wed Dec 26 2012 01:13:38 for TvlSim by
1.8.1.1