This class provides services to manage date information. A date represents the following time intervals: year, month, day, hour, minute, second, millisecond and microsecond. Current time is expressed in elapsed seconds and microseconds beginning from 00:00 GMT, January 1, 1979 (zero hour). The valid date can only be later than this one. Note: a Period object gives the interval between two dates.
More...
|
| Quantity_Date () |
| Constructs a default date (00:00 GMT, January 1, 1979 (zero hour)); use the function SetValues to define the required date; or. More...
|
|
| Quantity_Date (const Standard_Integer mm, const Standard_Integer dd, const Standard_Integer yyyy, const Standard_Integer hh, const Standard_Integer mn, const Standard_Integer ss, const Standard_Integer mis=0, const Standard_Integer mics=0) |
| Constructs a date from the year yyyy, the month mm, the day dd, the hour hh, the minute mn, the second ss, the millisecond mis (defaulted to 0) and the microsecond mics (defaulted to 0).. With: 1 <= mm <= 12 1 <= dd <= max number of days of <mm> 1979 <= yyyy 0 <= hh <= 23 0 <= mn <= 59 0 <= ss <= 59 0 <= mis <= 999 0 <= mics <= 999 Exceptions Quantity_DateDefinitionError if mm, dd, hh, mn, ss, mis and mics are not the components of the valid date. More...
|
|
void | Values (Standard_Integer &mm, Standard_Integer &dd, Standard_Integer &yy, Standard_Integer &hh, Standard_Integer &mn, Standard_Integer &ss, Standard_Integer &mis, Standard_Integer &mics) const |
| Gets a complete Date. More...
|
|
void | SetValues (const Standard_Integer mm, const Standard_Integer dd, const Standard_Integer yy, const Standard_Integer hh, const Standard_Integer mn, const Standard_Integer ss, const Standard_Integer mis=0, const Standard_Integer mics=0) |
| Assigns to this date the year yyyy, the month mm, the day dd, the hour hh, the minute mn, the second ss, the millisecond mis (defaulted to 0) and the microsecond mics (defaulted to 0). Exceptions Quantity_DateDefinitionError if mm, dd, hh, mn, ss, mis and mics are not components of a valid date. More...
|
|
Quantity_Period | Difference (const Quantity_Date &anOther) |
| Subtracts one Date from another one to find the period between and returns the value. The result is the absolute value between the difference of two dates. More...
|
|
Quantity_Date | Subtract (const Quantity_Period &aPeriod) |
| Subtracts a period from a Date and returns the new Date. Raises an exception if the result date is anterior to Jan 1, 1979. More...
|
|
Quantity_Date | operator- (const Quantity_Period &aPeriod) |
|
Quantity_Date | Add (const Quantity_Period &aPeriod) |
| Adds a Period to a Date and returns the new Date. More...
|
|
Quantity_Date | operator+ (const Quantity_Period &aPeriod) |
|
Standard_Integer | Year () |
| Returns year of a Date. More...
|
|
Standard_Integer | Month () |
| Returns month of a Date. More...
|
|
Standard_Integer | Day () |
| Returns Day of a Date. More...
|
|
Standard_Integer | Hour () |
| Returns Hour of a Date. More...
|
|
Standard_Integer | Minute () |
| Returns minute of a Date. More...
|
|
Standard_Integer | Second () |
| Returns seconde of a Date. More...
|
|
Standard_Integer | MilliSecond () |
| Returns millisecond of a Date. More...
|
|
Standard_Integer | MicroSecond () |
| Returns microsecond of a Date. More...
|
|
Standard_Boolean | IsEqual (const Quantity_Date &anOther) const |
| Returns TRUE if both <me> and <other> are equal. This method is an alias of operator ==. More...
|
|
Standard_Boolean | operator== (const Quantity_Date &anOther) const |
|
Standard_Boolean | IsEarlier (const Quantity_Date &anOther) const |
| Returns TRUE if <me> is earlier than <other>. More...
|
|
Standard_Boolean | operator< (const Quantity_Date &anOther) const |
|
Standard_Boolean | IsLater (const Quantity_Date &anOther) const |
| Returns TRUE if <me> is later then <other>. More...
|
|
Standard_Boolean | operator> (const Quantity_Date &anOther) const |
|
|
static Standard_Boolean | IsValid (const Standard_Integer mm, const Standard_Integer dd, const Standard_Integer yy, const Standard_Integer hh, const Standard_Integer mn, const Standard_Integer ss, const Standard_Integer mis=0, const Standard_Integer mics=0) |
| Checks the validity of a date - returns true if a date defined from the year yyyy, the month mm, the day dd, the hour hh, the minute mn, the second ss, the millisecond mis (defaulted to 0) and the microsecond mics (defaulted to 0) is valid. A date must satisfy the conditions above: More...
|
|
static Standard_Boolean | IsLeap (const Standard_Integer yy) |
| Returns true if a year is a leap year. The leap years are divisable by 4 and not by 100 except the years divisable by 400. More...
|
|
This class provides services to manage date information. A date represents the following time intervals: year, month, day, hour, minute, second, millisecond and microsecond. Current time is expressed in elapsed seconds and microseconds beginning from 00:00 GMT, January 1, 1979 (zero hour). The valid date can only be later than this one. Note: a Period object gives the interval between two dates.
Constructs a date from the year yyyy, the month mm, the day dd, the hour hh, the minute mn, the second ss, the millisecond mis (defaulted to 0) and the microsecond mics (defaulted to 0).. With: 1 <= mm <= 12 1 <= dd <= max number of days of <mm> 1979 <= yyyy 0 <= hh <= 23 0 <= mn <= 59 0 <= ss <= 59 0 <= mis <= 999 0 <= mics <= 999 Exceptions Quantity_DateDefinitionError if mm, dd, hh, mn, ss, mis and mics are not the components of the valid date.