#ifndef WX_PRECOMP
#include "wx/hash.h"
-#ifdef USE_STORABLE_CLASSES
+#ifdef USE_SERIAL
#include "wx/objstrm.h"
#include "wx/serbase.h"
#endif
wxObject::wxObject(void)
{
m_refData = (wxObjectRefData *) NULL;
-#ifdef USE_STORABLE_CLASSES
+#ifdef USE_SERIAL
m_serialObj = (wxObject_Serialize *)NULL;
#endif
}
wxObject::~wxObject(void)
{
UnRef();
-#ifdef USE_STORABLE_CLASSES
+#ifdef USE_SERIAL
if (m_serialObj)
delete m_serialObj;
#endif