]>
Commit | Line | Data |
---|---|---|
1 | /////////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/unix/private/fdiounix.h | |
3 | // Purpose: wxFDIOManagerUnix class used by console Unix applications | |
4 | // Author: Vadim Zeitlin | |
5 | // Created: 2009-08-17 | |
6 | // Copyright: (c) 2009 Vadim Zeitlin <vadim@wxwidgets.org> | |
7 | // Licence: wxWindows licence | |
8 | /////////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifndef _UNIX_PRIVATE_FDIOUNIX_H_ | |
11 | #define _UNIX_PRIVATE_FDIOUNIX_H_ | |
12 | ||
13 | #include "wx/private/fdiomanager.h" | |
14 | ||
15 | // ---------------------------------------------------------------------------- | |
16 | // wxFDIOManagerUnix: implement wxFDIOManager interface using wxFDIODispatcher | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
19 | class wxFDIOManagerUnix : public wxFDIOManager | |
20 | { | |
21 | public: | |
22 | virtual int AddInput(wxFDIOHandler *handler, int fd, Direction d); | |
23 | virtual void RemoveInput(wxFDIOHandler *handler, int fd, Direction d); | |
24 | }; | |
25 | ||
26 | #endif // _UNIX_PRIVATE_FDIOUNIX_H_ | |
27 |