1.01.12
C++ Simulated Travel-Oriented Distribution System Library
Toggle main menu visibility
Loading...
Searching...
No Matches
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
TVLSIM
Definition
BasConst.cpp:7
TVLSIM::RDSParameters
Definition
RDSParameters.hpp:13
TVLSIM::RDSParameters::setScheduleInputFilename
void setScheduleInputFilename(const std::string &iInputFilename)
Definition
RDSParameters.hpp:24
TVLSIM::RDSParameters::describe
const std::string describe() const
Definition
RDSParameters.cpp:36
TVLSIM::RDSParameters::_scheduleInputFilename
std::string _scheduleInputFilename
Definition
RDSParameters.hpp:52
TVLSIM::RDSParameters::toStream
void toStream(std::ostream &ioOut) const
Definition
RDSParameters.cpp:26
TVLSIM::RDSParameters::RDSParameters
RDSParameters()
Definition
RDSParameters.cpp:13
TVLSIM::RDSParameters::getScheduleInputFilename
const std::string & getScheduleInputFilename() const
Definition
RDSParameters.hpp:18
TVLSIM::RDSParameters::fromStream
void fromStream(std::istream &ioIn)
Definition
RDSParameters.cpp:31
TVLSIM::RDSParameters::~RDSParameters
~RDSParameters()
Definition
RDSParameters.cpp:22
Generated on
for TvlSim by
1.17.0