Extract the date part of the full dte and time as hzSDate (short form date) instance Arguments: None
| Return Type | Function name | Arguments |
|---|---|---|
| hzSDate | hzXDate::Date | (void) |
Declared in file: hzDate.h
Defined in file : hzDate.cpp
Function Logic:
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 ;
}