#include "MyGUI_Prerequest.h"
#include "MyGUI_Diagnostic.h"
#include <string>
#include <typeinfo>
Go to the source code of this file.
#define MYGUI_DECLARE_TYPE_NAME |
( |
|
Type | ) |
|
Value:public: \
static const std::string& getClassTypeName() { static std::string type = #Type; return type; } \ \
virtual const std::string& getTypeName() const { return getClassTypeName(); }
Definition at line 31 of file MyGUI_RTTI.h.
#define MYGUI_RTTI_BASE |
( |
|
BaseType | ) |
|
Value:public: \
typedef BaseType RTTIBase; \
MYGUI_DECLARE_TYPE_NAME(BaseType) \ \
template<typename Type> Type* castType(bool _throw = true) \
{ \
if (this->isType<Type>()) return static_cast<Type*>(this); \
MYGUI_ASSERT(!_throw, "Error cast type '" << this->getTypeName() << "' to type '" << Type::getClassTypeName() << "' .") \
return nullptr; \
} \ \
template<typename Type> const Type* castType(bool _throw = true) const \
{ \
if (this->isType<Type>()) return static_cast<Type*>(this); \
MYGUI_ASSERT(!_throw, "Error cast type '" << this->getTypeName() << "' to type '" << Type::getClassTypeName() << "' .") \
return nullptr; \
}
Definition at line 38 of file MyGUI_RTTI.h.
#define MYGUI_RTTI_DERIVED |
( |
|
DerivedType | ) |
|
Value:public: \
MYGUI_DECLARE_TYPE_NAME(DerivedType) \
typedef RTTIBase Base; \
typedef DerivedType RTTIBase; \ \
Definition at line 65 of file MyGUI_RTTI.h.
#define MYGUI_RTTI_GET_TYPE |
( |
|
type | ) |
typeid(type) |
#define MYGUI_RTTI_TYPE const std::type_info& |