#include <ScheduleInfo.h>
Public Member Functions | |
void | setCTID (u_int16_t ctID) |
u_int16_t | getCTID () |
void | setWindowStart (u_int64_t windowStart) |
u_int64_t | getWindowStart () |
void | setWindowEnd (u_int64_t windowEnd) |
u_int64_t | getWindowEnd () |
Private Attributes | |
u_int16_t | _ctID |
u_int64_t | _windowStart |
u_int64_t | _windowEnd |
Definition at line 13 of file ScheduleInfo.h.
u_int16_t ScheduleInfo::getCTID | ( | ) | [inline] |
Definition at line 28 of file ScheduleInfo.h.
00028 { 00029 return _ctID; 00030 }
u_int64_t ScheduleInfo::getWindowEnd | ( | ) | [inline] |
Definition at line 42 of file ScheduleInfo.h.
00042 { 00043 return _windowEnd; 00044 }
u_int64_t ScheduleInfo::getWindowStart | ( | ) | [inline] |
Definition at line 35 of file ScheduleInfo.h.
00035 { 00036 return _windowStart; 00037 }
void ScheduleInfo::setCTID | ( | u_int16_t | ctID | ) | [inline] |
Definition at line 25 of file ScheduleInfo.h.
00025 { 00026 _ctID = ctID; 00027 }
void ScheduleInfo::setWindowEnd | ( | u_int64_t | windowEnd | ) | [inline] |
Definition at line 39 of file ScheduleInfo.h.
00039 { 00040 _windowEnd = windowEnd; 00041 }
void ScheduleInfo::setWindowStart | ( | u_int64_t | windowStart | ) | [inline] |
Definition at line 32 of file ScheduleInfo.h.
00032 { 00033 _windowStart = windowStart; 00034 }
u_int16_t ScheduleInfo::_ctID [private] |
Definition at line 20 of file ScheduleInfo.h.
u_int64_t ScheduleInfo::_windowEnd [private] |
Definition at line 22 of file ScheduleInfo.h.
Referenced by getWindowEnd(), and setWindowEnd().
u_int64_t ScheduleInfo::_windowStart [private] |
Definition at line 21 of file ScheduleInfo.h.
Referenced by getWindowStart(), and setWindowStart().