Set the short date to the supplied short date operand Returns: E_OK
| Return Type | Function name | Arguments |
|---|---|---|
| hzEcode | hzSDate::SetDate | (hzSDate&,) |
Declared in file: hzDate.h
Defined in file : hzDate.cpp
Function Logic:
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 ;
}