Set a short date to the date component of a full date/time.
| Return Type | Function name | Arguments |
|---|---|---|
| hzSDate& | hzSDate::operator= | (hzXDate&,) |
Declared in file: hzDate.h
Defined in file : hzDate.cpp
Function Logic:
Function body:
hzSDate& hzSDate::operator= (hzXDate& op)
{
// Set a short date to the date component of a full date/time.
//
// Arguments: 1) op Operand date
//
// Returns: Reference to this hzSDate instance
m_days = op.NoDays() ;
return *this ;
}