Function CSPDateTime::operator >()
Description:
Checks whether the contained datetime value of this object is greater than the value of another datetime object.
 |
Prototype:
bool operator >(const CSPDateTime& dtDateTime) const;
Arguments:
- const CSPDateTime& dtDateTime [IN]
The datetime value to compare to.
Return value:
If this object's value is greater than the other object's, it returns true. Otherwise, it returns false.
See also:
member functions operator == (), operator != (), operator < (), operator <= (), operator >= ()
|
|