Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

CComCurrency::operator >

 

This operator compares two CComCurrency objects to determine the larger.


      bool operator >(
   const CComCurrency & cur 
) const;

cur

A CComCurrency object.

Returns true if the first object is greater than the second, false otherwise.

Example

CComCurrency cur1(10, 5100);
CComCurrency cur2(10, 5000);
ATLASSERT(cur1 > cur2);

Requirements

Header: atlcur.h

Show: