Advance or retard a hzXDate by a number of hours. This will alter the day date if the alteration is sufficient to cross one or more midnight boundaries. Returns: None
| Return Type | Function name | Arguments |
|---|---|---|
| void | hzXDate::althour | (int32_t,) |
Declared in file: hzDate.h
Defined in file : hzDate.cpp
Function Logic:
Function body:
void hzXDate::althour (int32_t nounits)
{
// Advance or retard a hzXDate by a number of hours. This will alter the day date if the alteration is sufficient to cross one or more
// midnight boundaries.
//
// Arguments: 1) nounits Number of units (hours) into future/past
// Returns: None
altsec(3600*nounits);
}