Set this hzTime instance to the system clock Arguments: None Returns: None

Return TypeFunction nameArguments
voidhzTime::SysTime(void)

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

Function Logic:

0:START 1:pt t t t ( ( m_secs 2: No text

Function body:

void hzTime::SysTime (void)
{
   //  Set this hzTime instance to 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) ;
   m_secs = (t->tm_hour * 3600)+(t->tm_min*60)+t->tm_sec ;
}