Arguments: None
| Return Type | Function name | Arguments |
|---|---|---|
| hzSDate | hzAtom::SDate | (void) |
Declared in file: hzDatabase.h
Defined in file : hzAtom.cpp
Function Logic:
Function body:
hzSDate hzAtom::SDate (void)
{
// Arguments: None
// Returns: Instance of hzSDate by value. This will be populated if the hzAtom has a value and the datatype is BASETYPE_SDATE and be empty otherwise.
hzSDate tmp ; // Return value
if (m_eStatus == ATOM_SET && m_eType == BASETYPE_SDATE)
{
tmp.SetDate(m_Data.m_uInt32) ;
return tmp ;
}
return _hz_null_hzSDate ;
}