]>
Commit | Line | Data |
---|---|---|
71e9885b VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/private/eventloopsourcesmanager.h | |
3 | // Purpose: declares wxEventLoopSourcesManagerBase class | |
4 | // Author: Rob Bresalier | |
5 | // Created: 2013-06-19 | |
71e9885b VZ |
6 | // Copyright: (c) 2013 Rob Bresalier |
7 | // Licence: wxWindows licence | |
8 | /////////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifndef _WX_PRIVATE_EVENTLOOPSOURCESMANAGER_H_ | |
11 | #define _WX_PRIVATE_EVENTLOOPSOURCESMANAGER_H_ | |
12 | ||
13 | // For pulling in the value of wxUSE_EVENTLOOP_SOURCE | |
14 | #include "wx/evtloop.h" | |
15 | ||
16 | class WXDLLIMPEXP_BASE wxEventLoopSourcesManagerBase | |
17 | { | |
18 | public: | |
19 | #if wxUSE_EVENTLOOP_SOURCE | |
20 | virtual wxEventLoopSource* | |
21 | AddSourceForFD(int fd, wxEventLoopSourceHandler *handler, int flags) = 0; | |
22 | #endif | |
23 | }; | |
24 | ||
25 | #endif // _WX_PRIVATE_EVENTLOOPSOURCESMANAGER_H_ |