Add to this date the supplied number of days

Return TypeFunction nameArguments
hzXDate&hzXDate::operator+=(uint32_t,)

Declared and defined in file: hzDate.h

Function Logic:

0:START 1:nDays 2:m_hour items 3:Return *this

Function body:

hzXDate& hzXDate::operator+= (uint32_t nDays)
   {
       //  Add to 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 ;
   }