#include <NIVisumTL.h>

Definition at line 52 of file NIVisumTL.h.
Public Member Functions | |
| SUMOTime | GetEndTime () |
| SUMOTime | GetStartTime () |
| void | SetEndTime (SUMOTime EndTime) |
| void | SetStartTime (SUMOTime StartTime) |
| TimePeriod (SUMOTime StartTime, SUMOTime EndTime) | |
| TimePeriod () | |
| ~TimePeriod () | |
Private Attributes | |
| SUMOTime | myEndTime |
| SUMOTime | myStartTime |
| NIVisumTL::TimePeriod::TimePeriod | ( | ) |
Definition at line 50 of file NIVisumTL.cpp.
References myEndTime, and myStartTime.
00050 { 00051 myEndTime = 0; 00052 myStartTime = 0; 00053 }
Definition at line 55 of file NIVisumTL.cpp.
References myEndTime, and myStartTime.
00055 { 00056 myStartTime = StartTime; 00057 myEndTime = EndTime; 00058 }
| NIVisumTL::TimePeriod::~TimePeriod | ( | ) |
| SUMOTime NIVisumTL::TimePeriod::GetEndTime | ( | ) |
Definition at line 63 of file NIVisumTL.cpp.
References myEndTime.
Referenced by NIVisumTL::build().
00063 { 00064 return myEndTime; 00065 }
| SUMOTime NIVisumTL::TimePeriod::GetStartTime | ( | ) |
Definition at line 68 of file NIVisumTL.cpp.
References myStartTime.
Referenced by NIVisumTL::build().
00068 { 00069 return myStartTime; 00070 }
| void NIVisumTL::TimePeriod::SetEndTime | ( | SUMOTime | EndTime | ) |
Definition at line 73 of file NIVisumTL.cpp.
References myEndTime.
00073 { 00074 myEndTime = EndTime; 00075 }
| void NIVisumTL::TimePeriod::SetStartTime | ( | SUMOTime | StartTime | ) |
Definition at line 78 of file NIVisumTL.cpp.
References myStartTime.
00078 { 00079 myStartTime = StartTime; 00080 }
SUMOTime NIVisumTL::TimePeriod::myEndTime [private] |
Definition at line 65 of file NIVisumTL.h.
Referenced by GetEndTime(), SetEndTime(), and TimePeriod().
SUMOTime NIVisumTL::TimePeriod::myStartTime [private] |
Definition at line 64 of file NIVisumTL.h.
Referenced by GetStartTime(), SetStartTime(), and TimePeriod().
1.5.6