]> git.saurik.com Git - wxWidgets.git/blob - include/wx/osx/cocoa/evtloop.h
be4e788bbb0fb778c5eefc60daa488314393d699
[wxWidgets.git] / include / wx / osx / cocoa / evtloop.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/osx/cocoa/evtloop.h
3 // Purpose: declaration of wxGUIEventLoop for wxOSX/Cocoa
4 // Author: Vadim Zeitlin
5 // Created: 2008-12-28
6 // RCS-ID: $Id$
7 // Copyright: (c) 2006 Vadim Zeitlin <vadim@wxwindows.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
10
11 #ifndef _WX_OSX_COCOA_EVTLOOP_H_
12 #define _WX_OSX_COCOA_EVTLOOP_H_
13
14 class WXDLLIMPEXP_BASE wxGUIEventLoop : public wxCFEventLoop
15 {
16 public:
17 wxGUIEventLoop();
18
19 protected:
20 virtual int DoDispatchTimeout(unsigned long timeout);
21
22 };
23
24 #endif // _WX_OSX_COCOA_EVTLOOP_H_
25