Operator ==
Purpose
The CMetaProperty class == operator function returns 1 if objectA is equal to objectB. The operator returns 0 if the objects are not equal.
Syntax
int operator==(const CMetaProperty &);
Usage:
CMetaProperty objectA, objectB;
.
.
.
if (objectA == objectB){
//objects are equal
}else{
//Objects are not equal
}