]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/unix/private/epolldispatcher.h
set eol-style
[wxWidgets.git] / include / wx / unix / private / epolldispatcher.h
index 735ab6d72cd0019598f59d1996474ba52fbf573b..39bd3a27e597f4e00f16136e75585c8c39aff13b 100644 (file)
 class WXDLLIMPEXP_CORE wxEpollDispatcher : public wxFDIODispatcher
 {
 public:
-    // get pointer to the unique instance of this class, can return NULL if
+    // create a new instance of this class, can return NULL if
     // epoll() is not supported on this system
     //
-    // do not delete the returned pointer
-    static wxEpollDispatcher *Get();
+    // the caller should delete the returned pointer
+    static wxEpollDispatcher *Create();
+
+    virtual ~wxEpollDispatcher();
 
     // implement base class pure virtual methods
     virtual bool RegisterFD(int fd, wxFDIOHandler* handler, int flags = wxFDIO_ALL);
     virtual bool ModifyFD(int fd, wxFDIOHandler* handler, int flags = wxFDIO_ALL);
     virtual bool UnregisterFD(int fd);
-    virtual void RunLoop(int timeout = TIMEOUT_INFINITE);
+    virtual void Dispatch(int timeout = TIMEOUT_INFINITE);
 
 private:
-    // ctor is private, use Get()
-    wxEpollDispatcher();
-
-    // return true if the object was successfully initialized
-    bool IsOk() const { return m_epollDescriptor != -1; }
+    // ctor is private, use Create()
+    wxEpollDispatcher(int epollDescriptor);
 
     int m_epollDescriptor;
 };