Set the short date to the supplied short date operand Returns: E_OK

Return TypeFunction nameArguments
hzEcodehzSDate::SetDate(hzSDate&,)

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

Function Logic:

0:START 1:m_days 2:Return E_OK

Function body:

hzEcode hzSDate::SetDate (hzSDate& op)
{
   //  Set the short date to the supplied short date operand
   //  
   //  Arguments: 1) op The operant short form date
   //  
   //  Returns: E_OK
   m_days = op.m_days ;
   return E_OK ;
}