Function CSPVariant::operator !=()
Description:
Compares the content of two variants.
 |
Prototype:
bool operator !=(const CSPVariant& varVariant) const;
Arguments:
- const CSPVariant& varVariant [IN]
The variant to compare to.
Return value:
If this variant does not have the same content with the variant to compare to, it returns true. Otherwise, it returns false.
Remarks:
If the two variants have content of different datatype, the '!=' comparison returns true, even if the value of the contents are the same (for instance number 123 of type short and 123 of type long).
See also:
member function operator == ()
|
|