]> git.saurik.com Git - wxWidgets.git/blame - include/wx/private/eventloopsourcesmanager.h
Add lambda-friendly wxDialog::ShowWindowModalThenDo().
[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
71e9885b
VZ
6// Copyright: (c) 2013 Rob Bresalier
7// Licence: wxWindows licence
8///////////////////////////////////////////////////////////////////////////////
9
10#ifndef _WX_PRIVATE_EVENTLOOPSOURCESMANAGER_H_
11#define _WX_PRIVATE_EVENTLOOPSOURCESMANAGER_H_
12
13// For pulling in the value of wxUSE_EVENTLOOP_SOURCE
14#include "wx/evtloop.h"
15
16class WXDLLIMPEXP_BASE wxEventLoopSourcesManagerBase
17{
18public:
19#if wxUSE_EVENTLOOP_SOURCE
20 virtual wxEventLoopSource*
21 AddSourceForFD(int fd, wxEventLoopSourceHandler *handler, int flags) = 0;
22#endif
23};
24
25#endif // _WX_PRIVATE_EVENTLOOPSOURCESMANAGER_H_