Test if a short date is 'equal' to a long date (ignoring the time in the long date)

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

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

Function Logic:

Function body:

bool hzSDate::operator== (hzXDate& op)
{
   //  Test if a short date is 'equal' to a long date (ignoring the time in the long date)
   //  
   //  Arguments: 1) op Operand date
   //  
   //  Returns: True If this short form date is equal to the date part of the supplied full date
   //     False Otherwise
   return m_days == op.NoDays() ? true : false ;
}