#include <TimeStamp.hpp>
Public Member Functions | |
TimeStamp (uint32_t inYear, uint32_t inMonth, uint32_t inDay, uint32_t inHour, uint32_t inMinute, uint32_t inSecond) | |
TimeStamp (const TimeStamp &source) | |
TimeStamp & | operator= (const TimeStamp &source) throw () |
uint32_t | getYear () const throw () |
void | setYear (const uint32_t &inYear) throw () |
uint32_t | getMonth () const throw () |
void | setMonth (const uint32_t &inMonth) throw () |
uint32_t | getDay () const throw () |
void | setDay (const uint32_t &inDay) throw () |
uint32_t | getHour () const throw () |
void | setHour (const uint32_t &inHour) throw () |
uint32_t | getMinute () const throw () |
void | setMinute (uint32_t inMinute) throw () |
uint32_t | getSecond () const throw () |
void | setSecond (uint32_t inSecond) throw () |
Private Attributes | |
uint32_t | mYear |
uint32_t | mMonth |
uint32_t | mDay |
uint32_t | mHour |
uint32_t | mMinute |
uint32_t | mSecond |
Definition at line 30 of file TimeStamp.hpp.
uint32_t torc::generic::TimeStamp::getYear | ( | ) | const throw () [inline] |
void torc::generic::TimeStamp::setYear | ( | const uint32_t & | inYear | ) | throw () |
Set year information
[in] | inYear | Year information |
Definition at line 72 of file TimeStamp.cpp.
uint32_t torc::generic::TimeStamp::getMonth | ( | ) | const throw () [inline] |
void torc::generic::TimeStamp::setMonth | ( | const uint32_t & | inMonth | ) | throw () |
Set month information
[in] | inMonth | Month information |
Definition at line 82 of file TimeStamp.cpp.
uint32_t torc::generic::TimeStamp::getDay | ( | ) | const throw () [inline] |
void torc::generic::TimeStamp::setDay | ( | const uint32_t & | inDay | ) | throw () |
Set day information
[in] | inDay | Day information |
Definition at line 92 of file TimeStamp.cpp.
uint32_t torc::generic::TimeStamp::getHour | ( | ) | const throw () [inline] |
void torc::generic::TimeStamp::setHour | ( | const uint32_t & | inHour | ) | throw () |
Set hour information
[in] | inHour | Hour information |
Definition at line 102 of file TimeStamp.cpp.
uint32_t torc::generic::TimeStamp::getMinute | ( | ) | const throw () [inline] |
void torc::generic::TimeStamp::setMinute | ( | uint32_t | inMinute | ) | throw () |
Set minute information
[in] | inMinute | Minute information |
Definition at line 112 of file TimeStamp.cpp.
uint32_t torc::generic::TimeStamp::getSecond | ( | ) | const throw () [inline] |
void torc::generic::TimeStamp::setSecond | ( | uint32_t | inSecond | ) | throw () |
Set second information
[in] | inSecond | Second information |
Definition at line 122 of file TimeStamp.cpp.