]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/typeinfo.h
Make art provider id of type "char *" instead of "wxChar *".
[wxWidgets.git] / include / wx / typeinfo.h
index c1efb1b0c9b6785bca8e681cb7a9aab5a6046cd6..9d6ceb437dabbc663992da495bf9e03f9c886d0f 100644 (file)
 //
 // This file defines wxTypeId macro that should be used internally in
 // wxWidgets instead of typeid(), for compatibility with builds that do
-// not implement C++ RTTI. Also, type defining macros in this file are also
+// not implement C++ RTTI. Also, type defining macros in this file are
 // intended for internal use only at this time and may change in future
 // versions.
 //
+// The reason why we need this simple RTTI system in addition to the older
+// wxObject-based one is that the latter does not work in template
+// classes.
+//
 
 #include "wx/defs.h"
 
 // wxTypeId could of course simply be defined as typeid.
 //
 
-class wxTypeInfo
+class wxTypeIdentifier
 {
 public:
-    wxTypeInfo(const char* className)
+    wxTypeIdentifier(const char* className)
     {
         m_className = className;
     }
 
-    bool operator==(const wxTypeInfo& other)
+    bool operator==(const wxTypeIdentifier& other)
     {
         return strcmp(m_className, other.m_className) == 0;
     }
 
-    bool operator!=(const wxTypeInfo& other)
+    bool operator!=(const wxTypeIdentifier& other)
     {
         return strcmp(m_className, other.m_className) != 0;
     }
@@ -61,7 +65,7 @@ private:
     const char* m_className;
 };
 
-#define wxTypeId(OBJ) wxTypeInfo(typeid(OBJ).name())
+#define wxTypeId(OBJ) wxTypeIdentifier(typeid(OBJ).name())
 
 #else // if !wxNO_RTTI
 
@@ -112,7 +116,7 @@ _WX_DECLARE_TYPEINFO_CUSTOM(CLS, sm_wxClassInfo)
 
 #define wxTypeId(OBJ) (OBJ).GetWxTypeId()
 
-// Because abstract classes cannot be instantiated, we use 
+// Because abstract classes cannot be instantiated, we use
 // this macro to define pure virtual type interface for them.
 #define WX_DECLARE_ABSTRACT_TYPEINFO(CLS) \
 public: \