Set a short date to the date component of a full date/time.

Return TypeFunction nameArguments
hzSDate&hzSDate::operator=(hzXDate&,)

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

Function Logic:

0:START 1:m_days 2:Return *this

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 ;
}