TvlSim Logo  1.01.6
C++ Simulated Travel-Oriented Distribution System Library
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
10namespace TVLSIM {
11
13 struct RDSParameters : public stdair::StructAbstract {
14
15 public:
16 // //////// GETTERS /////////
18 const std::string& getScheduleInputFilename () const {
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:
45
48
49 public:
50 // ////////// Attributes ///////////
53 };
54
55}
56#endif //__TVLSIM_BOM_RDSPARAMETERS_HPP
void setScheduleInputFilename(const std::string &iInputFilename)
const std::string describe() const
std::string _scheduleInputFilename
void toStream(std::ostream &ioOut) const
const std::string & getScheduleInputFilename() const
void fromStream(std::istream &ioIn)