Operator ==
Purpose
The Operator== function returns 1 if objectA is equal to objectB, 0 if the objects are not equal. Two objects are equal if the object ID, name, version number, and publish state are equal.
Syntax
int operator==(const CMetaObjectKey &);
Usage:
CMetaVersionedObjectKey objectA, objectb:
...
if (objectA == objectB)
//objects are equal
else
//objects are not equal