* Default Constructor. * All elements are initialized to zero. */
| 78 | * All elements are initialized to zero. |
| 79 | */ |
| 80 | UnixTime( int sec = 0, |
| 81 | int usec = 0, |
| 82 | TimeSystem ts = TimeSystem::Unknown ) |
| 83 | { tv.tv_sec = sec; tv.tv_usec = usec; timeSystem = ts; } |
| 84 | |
| 85 | /** struct timeval Constructor. |
| 86 | * Sets time according to the given struct timeval. |
no test coverage detected