#include "wx/meta/removeref.h"
+#ifdef wxHAS_REMOVEREF
+ // CallAfter() implementation requires wxRemoveRef(), so just disable it
+ // for compilers too broken to not allow defining it.
+ #define wxHAS_CALL_AFTER
+#endif
+
// ----------------------------------------------------------------------------
// forward declarations
// ----------------------------------------------------------------------------
// done asynchronously, i.e. at some later time, instead of immediately when
// the event object is constructed.
+#ifdef wxHAS_CALL_AFTER
+
// This is a base class used to process all method calls.
class wxAsyncMethodCallEvent : public wxEvent
{
const ParamType2 m_param2;
};
+#endif // wxHAS_CALL_AFTER
+
+
#if wxUSE_GUI
// NOTE: uses AddPendingEvent(); call only from secondary threads
#endif
+#ifdef wxHAS_CALL_AFTER
// Asynchronous method calls: these methods schedule the given method
// pointer for a later call (during the next idle event loop iteration).
//
static_cast<T*>(this), method, x1, x2)
);
}
+#endif // wxHAS_CALL_AFTER
// Connecting and disconnecting