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 objects for inequality.


      bool operator !=(
   const CComCurrency & cur 
) const;

cur

The CComCurrency object to be compared.

Returns true if the item being compared is not equal to the CComCurrency object; otherwise, false.

Example

CComCurrency cur1(10, 5000), cur2(10, 5001);
ATLASSERT(cur1 != cur2);   

Requirements

Header: atlcur.h

Show: