#include "wx/object.h"
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface
#endif
virtual bool GetVisible() { return m_visible; }
virtual void SetVisible( bool visible ) { m_visible = visible; }
+ bool IsNull() const { return (m_refData == 0); }
+
protected:
bool m_visible; /* can a pointer to this object be safely taken?
* - only if created within FindOrCreate... */