-/*
- * wxWindows root object.
- */
-
-wxObject::wxObject()
-{
- m_refData = (wxObjectRefData *) NULL;
-#if wxUSE_SERIAL
- m_serialObj = (wxObject_Serialize *)NULL;
-#endif
-#if defined(__WXDEBUG__) && defined(__VISAGECPP__)
- id = Nid++;
- N++;
-// { printf("wxObject %i/%i \t",id,N);
-// }
-#endif
-}
-
-wxObject::~wxObject()
-{
- UnRef();
-#if wxUSE_SERIAL
- if (m_serialObj)
- delete m_serialObj;
-#endif
-#if defined(__WXDEBUG__) && defined(__VISAGECPP__)
- N--;
-// { printf("~wxObject %i/%i \t",id,N);
-// }
-#endif //__WXDEBUG__
-}
-
-/*
- * Is this object a kind of (a subclass of) 'info'?
- * E.g. is wxWindow a kind of wxObject?
- * Go from this class to superclass, taking into account
- * two possible base classes.
- */
-
+// Is this object a kind of (a subclass of) 'info'?
+// E.g. is wxWindow a kind of wxObject?
+// Go from this class to superclass, taking into account
+// two possible base classes.