]> git.saurik.com Git - wxWidgets.git/blame - include/wx/private/eventloopsourcesmanager.h
avoid GTK+ prefixes for our tree entry code, it is not part of GTK+, should have...
[wxWidgets.git] / include / wx / private / eventloopsourcesmanager.h
CommitLineData
71e9885b
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/private/eventloopsourcesmanager.h
3// Purpose: declares wxEventLoopSourcesManagerBase class
4// Author: Rob Bresalier
5// Created: 2013-06-19
6// RCS-ID: $Id$
7// Copyright: (c) 2013 Rob Bresalier
8// Licence: wxWindows licence
9///////////////////////////////////////////////////////////////////////////////
10
11#ifndef _WX_PRIVATE_EVENTLOOPSOURCESMANAGER_H_
12#define _WX_PRIVATE_EVENTLOOPSOURCESMANAGER_H_
13
14// For pulling in the value of wxUSE_EVENTLOOP_SOURCE
15#include "wx/evtloop.h"
16
17class WXDLLIMPEXP_BASE wxEventLoopSourcesManagerBase
18{
19public:
20#if wxUSE_EVENTLOOP_SOURCE
21 virtual wxEventLoopSource*
22 AddSourceForFD(int fd, wxEventLoopSourceHandler *handler, int flags) = 0;
23#endif
24};
25
26#endif // _WX_PRIVATE_EVENTLOOPSOURCESMANAGER_H_