Return true if the operand hzXDate is the same as this
| Return Type | Function name | Arguments |
|---|---|---|
| bool | hzXDate::operator== | (hzXDate&,) |
Declared in file: hzDate.h
Defined in file : hzDate.cpp
Function Logic:
Function body:
bool hzXDate::operator== (hzXDate& op)
{
// Return true if the operand hzXDate is the same as this
//
// Arguments: 1) op Operand date
return (m_hour == op.m_hour && m_usec == op.m_usec) ;
}