Operator <
Purpose
The CMetaObject class < operator function returns TRUE if the Object ID of objectA is less than the Object ID objectB.
Syntax
bool operator<(const CMetaObject &object);
Usage
CMetaObject objectA, objectB;
.
.
.
if (objectA < objectB)
//object identifier A is less than object identifier B
.
.
.
else
//object identifier A is not less than object identifier B
.
.