// Purpose: declares wxFDIOHandler class
// Author: Vadim Zeitlin
// Created: 2009-08-17
-// RCS-ID: $Id: wxhead.h,v 1.11 2009-06-29 10:23:04 zeitlin Exp $
+// RCS-ID: $Id$
// Copyright: (c) 2009 Vadim Zeitlin <vadim@wxwidgets.org>
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
class wxFDIOHandler
{
public:
+ wxFDIOHandler() { m_regmask = 0; }
+
// called when descriptor is available for non-blocking read
virtual void OnReadWaiting() = 0;
// wxSocketImplUnix currently
virtual bool IsOk() const { return true; }
+
+ // get/set the mask of events for which we're currently registered for:
+ // it's a combination of wxFDIO_{INPUT,OUTPUT,EXCEPTION}
+ int GetRegisteredEvents() const { return m_regmask; }
+ void SetRegisteredEvent(int flag) { m_regmask |= flag; }
+ void ClearRegisteredEvent(int flag) { m_regmask &= ~flag; }
+
+
// virtual dtor for the base class
virtual ~wxFDIOHandler() { }
+
+private:
+ int m_regmask;
+
+ wxDECLARE_NO_COPY_CLASS(wxFDIOHandler);
};
#endif // _WX_PRIVATE_FDIOHANDLER_H_