Extract the time part of the full data and time as a hzTime instance Arguments: None

Return TypeFunction nameArguments
hzTimehzXDate::Time(void)

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

Function Logic:

0:START 1:items 2:Return t

Function body:

hzTime hzXDate::Time (void)
{
   //  Extract the time part of the full data and time as a hzTime instance
   //  
   //  Arguments: None
   //  Returns: Instance of hzTime as the time part of the full date
   hzTime  t ;     //  hzTime instance
   t.SetTime(NoSecs()) ;
   return t ;
}