initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
27
libs/wxWidgets-3.3.1/include/wx/unix/private/fdiounix.h
Normal file
27
libs/wxWidgets-3.3.1/include/wx/unix/private/fdiounix.h
Normal file
@@ -0,0 +1,27 @@
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/unix/private/fdiounix.h
|
||||
// Purpose: wxFDIOManagerUnix class used by console Unix applications
|
||||
// Author: Vadim Zeitlin
|
||||
// Created: 2009-08-17
|
||||
// Copyright: (c) 2009 Vadim Zeitlin <vadim@wxwidgets.org>
|
||||
// Licence: wxWindows licence
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _UNIX_PRIVATE_FDIOUNIX_H_
|
||||
#define _UNIX_PRIVATE_FDIOUNIX_H_
|
||||
|
||||
#include "wx/private/fdiomanager.h"
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// wxFDIOManagerUnix: implement wxFDIOManager interface using wxFDIODispatcher
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
class wxFDIOManagerUnix : public wxFDIOManager
|
||||
{
|
||||
public:
|
||||
virtual int AddInput(wxFDIOHandler *handler, int fd, Direction d) override;
|
||||
virtual void RemoveInput(wxFDIOHandler *handler, int fd, Direction d) override;
|
||||
};
|
||||
|
||||
#endif // _UNIX_PRIVATE_FDIOUNIX_H_
|
||||
|
||||
Reference in New Issue
Block a user