1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/private/eventloopsourcesmanager.h
3 // Purpose: declares wxEventLoopSourcesManagerBase class
4 // Author: Rob Bresalier
7 // Copyright: (c) 2013 Rob Bresalier
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_PRIVATE_EVENTLOOPSOURCESMANAGER_H_
12 #define _WX_PRIVATE_EVENTLOOPSOURCESMANAGER_H_
14 // For pulling in the value of wxUSE_EVENTLOOP_SOURCE
15 #include "wx/evtloop.h"
17 class WXDLLIMPEXP_BASE wxEventLoopSourcesManagerBase
20 #if wxUSE_EVENTLOOP_SOURCE
21 virtual wxEventLoopSource
*
22 AddSourceForFD(int fd
, wxEventLoopSourceHandler
*handler
, int flags
) = 0;
26 #endif // _WX_PRIVATE_EVENTLOOPSOURCESMANAGER_H_