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