Extract the date part of the full dte and time as hzSDate (short form date) instance Arguments: None

Return TypeFunction nameArguments
hzSDatehzXDate::Date(void)

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

Function Logic:

0:START 1:items 2:Return d

Function body:

hzSDate hzXDate::Date (void)
{
   //  Extract the date part of the full dte and time as hzSDate (short form date) instance
   //  
   //  Arguments: None
   //  Returns: Instance of hzSDate as the date part of the full date
   hzSDate d ;     //  hzTime instance
   d.SetDate(NoDays()) ;
   return d ;
}