1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/private/fdioeventloopsourcehandler.h
3 // Purpose: declares wxFDIOEventLoopSourceHandler class
4 // Author: Rob Bresalier, Vadim Zeitlin
5 // Created: 2013-06-13 (extracted from src/unix/evtloopunix.cpp)
7 // Copyright: (c) 2009 Vadim Zeitlin <vadim@wxwidgets.org>
8 // (c) 2013 Rob Bresalier
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_PRIVATE_FDIO_EVENT_LOOP_SOURCE_HANDLER_H
13 #define _WX_PRIVATE_FDIO_EVENT_LOOP_SOURCE_HANDLER_H
15 #include "wx/evtloopsrc.h"
17 // This class is a temporary bridge between event loop sources and
18 // FDIODispatcher. It is going to be removed soon, when all subject interfaces
20 class wxFDIOEventLoopSourceHandler
: public wxFDIOHandler
23 wxEXPLICIT
wxFDIOEventLoopSourceHandler(wxEventLoopSourceHandler
* handler
)
28 // Just forward to the real handler.
29 virtual void OnReadWaiting() { m_handler
->OnReadWaiting(); }
30 virtual void OnWriteWaiting() { m_handler
->OnWriteWaiting(); }
31 virtual void OnExceptionWaiting() { m_handler
->OnExceptionWaiting(); }
34 wxEventLoopSourceHandler
* const m_handler
;
36 wxDECLARE_NO_COPY_CLASS(wxFDIOEventLoopSourceHandler
);
39 #endif // _WX_PRIVATE_FDIO_EVENT_LOOP_SOURCE_HANDLER_H