#include <c4d_file.h>
Public Member Functions | |
| void | Init () |
| Int32 | Compare (const LocalFileTime &t0, const LocalFileTime &t1) |
| Bool | operator== (const LocalFileTime &x) |
| Bool | operator!= (const LocalFileTime &x) |
| Bool | operator> (const LocalFileTime &x) |
| Bool | operator< (const LocalFileTime &x) |
| Bool | operator>= (const LocalFileTime &x) |
| Bool | operator<= (const LocalFileTime &x) |
| LocalFileTime | operator- (const LocalFileTime &t) const |
Public Attributes | |
| UInt16 | year |
| UInt16 | month |
| UInt16 | day |
| UInt16 | hour |
| UInt16 | minute |
| UInt16 | second |
| void Init | ( | ) |
Initializes the file time to a possibly invalid but deterministic state (0000-00-00 00:00:00).
| Int32 Compare | ( | const LocalFileTime & | t0, |
| const LocalFileTime & | t1 | ||
| ) |
Compares the two times t0 and t1.
| [in] | t0 | File time to compare. |
| [in] | t1 | File time to compare. |
| Bool operator== | ( | const LocalFileTime & | x | ) |
Equality operator. Checks if the file time is the same as another.
| [in] | x | File time to check equality with. |
| Bool operator!= | ( | const LocalFileTime & | x | ) |
Inequality operator. Checks if the file time is different to another.
| [in] | x | File time to compare with. |
| Bool operator> | ( | const LocalFileTime & | x | ) |
Greater than operator. Checks if the file time is greater than another.
| [in] | x | File time to compare with. |
| Bool operator< | ( | const LocalFileTime & | x | ) |
Less than operator. Checks if the file time is lower than another.
| [in] | x | File time to compare with. |
| Bool operator>= | ( | const LocalFileTime & | x | ) |
Greater than or equal to operator. Checks if the file time is greater or equal than another.
| [in] | x | File time to compare with. |
| Bool operator<= | ( | const LocalFileTime & | x | ) |
Less than or equal operator. Checks if the file time is lower or equal than another.
| [in] | x | File time to compare with. |
| LocalFileTime operator- | ( | const LocalFileTime & | t | ) | const |
Minus operator. Subtracts one time from another.
| [in] | t | File time to subtract from. |
| UInt16 year |
Year. (Actual year, e.g. 2005 A.D. = 2005.)
| UInt16 month |
Month. (Actual month, e.g. September = 9.)
| UInt16 day |
Day. (Actual day, e.g. 30 = 30.)
| UInt16 hour |
Actual hour. (Between 0 and 23. 4 pm = 16.)
| UInt16 minute |
Actual minute. (Between 0 and 59.)
| UInt16 second |
Actual second. (Between 0 and 59.)