Foxit PDF SDK
|
Inherits Object.
Public Member Functions | |
TimeRange () | |
Constructor. | |
TimeRange (const DateTime &start_time, const DateTime &end_time) | |
Constructor, with parameters. More... | |
TimeRange (const TimeRange &other) | |
Constructor, with another time range object. More... | |
bool | operator!= (const TimeRange &other) const |
Not equal operator. More... | |
TimeRange & | operator= (const TimeRange &other) |
Assign operator. More... | |
bool | operator== (const TimeRange &other) const |
Equal operator. More... | |
void | Set (const DateTime &start_time, const DateTime &end_time) |
Set value. More... | |
Public Attributes | |
DateTime | end_time |
End time of current time range. | |
DateTime | start_time |
Start time of current time range. | |
This class represents a time range, including start time and end time.
Constructor, with parameters.
[in] | start_time | Start time of current time range. |
[in] | end_time | End time of current time range. |
|
inline |
Constructor, with another time range object.
[in] | other | Another time range object. |
|
inline |
Not equal operator.
[in] | other | Another time range object. This function will check if current object is not equal to this one. |
Assign operator.
[in] | other | Another time range object, whose value would be assigned to current object. |
|
inline |
Equal operator.
[in] | other | Another time range object. This function will check if current object is equal to this one. |