Function CSPDate::operator >()
Description:
It checks the date of this object is greater than 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 greater than the other object's date, it returns true. Otherwise, it returns false.
See also:
member function operator == (), operator != (), operator < (), operator <= (), operator >= ()
|
|