Extract the time part of the full data and time as a hzTime instance Arguments: None
| Return Type | Function name | Arguments |
|---|---|---|
| hzTime | hzXDate::Time | (void) |
Declared in file: hzDate.h
Defined in file : hzDate.cpp
Function Logic:
Function body:
hzTime hzXDate::Time (void)
{
// Extract the time part of the full data and time as a hzTime instance
//
// Arguments: None
// Returns: Instance of hzTime as the time part of the full date
hzTime t ; // hzTime instance
t.SetTime(NoSecs()) ;
return t ;
}