Arguments: None

Return TypeFunction nameArguments
hzXDatehzAtom::XDate(void)

Declared in file: hzDatabase.h
Defined in file : hzAtom.cpp

Function Logic:

0:START 1:unknown 2:items 3:Return tmp 4:Return _hz_null_hzXDate

Function body:

hzXDate hzAtom::XDate (void)
{
   //  Arguments: None
   //  Returns: Instance of hzXDate by value. This will be populated if the hzAtom has a value and the datatype is BASETYPE_XDATE and be empty otherwise.
   hzXDate tmp ;       //  Pointer to cast
   if (m_eStatus == ATOM_SET && m_eType == BASETYPE_XDATE)
   {
       tmp.SetDate(m_Data.m_uInt64) ;
       return tmp ;
   }
   return _hz_null_hzXDate ;
}