Function CSPDate::operator <=()
Description:
It checks the date of this object is less than (refers to a prior date) or equal to the date of another date object.
 |
Prototype:
bool operator <=(const CSPDate& dDate) const;
Arguments:
- const CSPDate& dDate [IN]
The date to compare to.
Return value:
If the date of this object is less than or equal to the other object's date, it returns true. Otherwise, it returns false.
See also:
member function operator == (), operator != (), operator < (), operator > (), operator >= ()
|
|