CComCurrency::operator >=
This operator compares two CComCurrency objects to determine equality or the larger.
bool operator >=(
const CComCurrency & cur
) const;
- cur
A CComCurrency object.
Returns true if the first object is greater than or equal to the second, false otherwise.
CComCurrency cur1(10, 5100);
CComCurrency cur2(10, 5000);
ATLASSERT(cur1 >= cur2);
Header: atlcur.h