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)
6 // Copyright: (c) 2009 Vadim Zeitlin <vadim@wxwidgets.org>
7 // (c) 2013 Rob Bresalier
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_PRIVATE_FDIO_EVENT_LOOP_SOURCE_HANDLER_H
12 #define _WX_PRIVATE_FDIO_EVENT_LOOP_SOURCE_HANDLER_H
14 #include "wx/evtloopsrc.h"
16 // This class is a temporary bridge between event loop sources and
17 // FDIODispatcher. It is going to be removed soon, when all subject interfaces
19 class wxFDIOEventLoopSourceHandler
: public wxFDIOHandler
22 wxEXPLICIT
wxFDIOEventLoopSourceHandler(wxEventLoopSourceHandler
* handler
)
27 // Just forward to the real handler.
28 virtual void OnReadWaiting() { m_handler
->OnReadWaiting(); }
29 virtual void OnWriteWaiting() { m_handler
->OnWriteWaiting(); }
30 virtual void OnExceptionWaiting() { m_handler
->OnExceptionWaiting(); }
33 wxEventLoopSourceHandler
* const m_handler
;
35 wxDECLARE_NO_COPY_CLASS(wxFDIOEventLoopSourceHandler
);
38 #endif // _WX_PRIVATE_FDIO_EVENT_LOOP_SOURCE_HANDLER_H