Function CSPDateTime::operator <=()
Description:
Checks whether the contained datetime value of this object is less than or equal to 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 less than or equal to the other object's, it returns true. Otherwise, it returns false.
See also:
member functions operator == (), operator != (), operator < (), operator > (), operator >= ()
|
|