Set a short date by the system clock Arguments: None Returns: None

Return TypeFunction nameArguments
voidhzSDate::SysDate(void)

Declared in file: hzDate.h
Defined in file : hzDate.cpp

Function Logic:

0:START 1:pt t items 2: No text

Function body:

void hzSDate::SysDate (void)
{
   //  Set a short date by the system clock
   //  
   //  Arguments: None
   //  Returns: None
   time_t      pt ;    //  Recepticle for system time
   struct tm*  t ;     //  Converted system time
   pt = time(&pt) ;
   t = localtime(&pt) ;
   _daysfromdate(m_days, t->tm_year + 1900,t->tm_mon+1,t->tm_mday);
}