#include <Xrtti.h>
Public Member Functions | |
virtual | ~Enumeration () |
bool | operator== (const Enumeration &other) const |
bool | operator!= (const Enumeration &other) const |
virtual AccessType | GetAccessType () const =0 |
virtual const Context & | GetContext () const =0 |
virtual const char * | GetName () const =0 |
virtual U32 | GetValueCount () const =0 |
virtual const EnumerationValue & | GetValue (U32 index) const =0 |
|
|
Equality operator - returns true if this object is "functionally equivalent" to [other]. The two objects don't have to be exactly identical, but do have to be identical in every meaningful way. Note also that this doesn't test for equality of any base class members; it is a test only at this level of the inheritence hierarcy. To test if an object is completely equals, including for all of its subclasses defined in the Xrtti hierarchy, you must cast this class to its most derived class and call that method.
|
|
Inequality operator - returns false when the == operator would return true, and vice versa.
|
|
Returns the access type of the Enuimeration within the context in which it is defined.
|
|
Returns the Context in which this Enumeration is defined.
|
|
Returns the name of this Enumeration.
|
|
Returns the number of EnumerationValues of this Enumeration.
|
|
Returns an EnumerationValue of this Enumeration.
|