#include <Xrtti.h>
Public Member Functions | |
virtual | ~DestructorSignature () |
bool | operator== (const DestructorSignature &other) const |
bool | operator!= (const DestructorSignature &other) const |
virtual u32 | GetThrowCount () const =0 |
virtual const Type & | GetThrow (u32 index) const =0 |
virtual Xrtti::DestructorSignature::~DestructorSignature | ( | ) | [inline, virtual] |
bool Xrtti::DestructorSignature::operator== | ( | const DestructorSignature & | other | ) | const |
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.
other | is the other object to compare against |
bool Xrtti::DestructorSignature::operator!= | ( | const DestructorSignature & | other | ) | const [inline] |
Inequality operator - returns false when the == operator would return true, and vice versa.
other | is the other object to compare against |
virtual u32 Xrtti::DestructorSignature::GetThrowCount | ( | ) | const [pure virtual] |
Returns the number of types which this destructor declares that it throws as exceptions.
Returns a type which this destructor declares that it throws as an exception.
index | is the index of the throw type to return |