Constructors
Declared in <bdlt_time.h>
Create a Time object having the value 24:00:00.000000.
Time();
» more...
Create a Time object having the value of the specified original time.
Time(Time const& original);
» more...
Create a Time object having the (valid) value represented by the specified hour, and the optionally specified minute, second, millisecond, and microsecond. Unspecified arguments default to 0. The behavior is undefined unless all of the specified values are within their valid ranges (see isValid).
explicit
Time(
int hour,
int minute = 0,
int second = 0,
int millisecond = 0,
int microsecond = 0);
» more...