- class PipeIOHandler : public wxFDIOHandler
- {
- public:
- // default ctor does nothing, call Create() to really initialize the
- // object
- PipeIOHandler() { }
-
- bool Create();
-
- // this method can be, and normally is, called from another thread
- void WakeUp();
-
- int GetReadFd() { return m_pipe[wxPipe::Read]; }
-
- // implement wxFDIOHandler pure virtual methods
- virtual void OnReadWaiting();
- virtual void OnWriteWaiting() { }
- virtual void OnExceptionWaiting() { }
-
- private:
- wxPipe m_pipe;
- };
-
- PipeIOHandler m_wakeupPipe;