Subtract from this date the supplied number of days
| Return Type | Function name | Arguments |
|---|---|---|
| hzXDate& | hzXDate::operator-= | (uint32_t,) |
Declared and defined in file: hzDate.h
Function Logic:
Function body:
hzXDate& hzXDate::operator-= (uint32_t nDays)
{
// Subtract from this date the supplied number of days
m_hour -= (nDays * 24);
m_hour = m_hour < 0? 0: m_hour > (DAYS_IN_10K * 24)?(DAYS_IN_10K * 24):m_hour ;
return *this ;
}