DECLARE_NO_COPY_CLASS(wxEventLoopBase)
};
-#if defined(__WXMSW__) || defined(__WXMAC__)
+#if defined(__WXMSW__) || defined(__WXMAC__) || defined(__WXDFB__)
// this class can be used to implement a standard event loop logic using
// Pending() and Dispatch()
// sets the "should exit" flag and wakes up the loop so that it terminates
// soon
- virtual void Exit(int rc);
+ virtual void Exit(int rc = 0);
protected:
// implement this to wake up the loop: usually done by posting a dummy event
#include "wx/msw/evtloop.h"
#elif defined(__WXMAC__)
#include "wx/mac/evtloop.h"
+#elif defined(__WXDFB__)
+ #include "wx/dfb/evtloop.h"
#else // other platform
class WXDLLEXPORT wxEventLoopImpl;