From: Robin Dunn Date: Sat, 23 Jun 2012 00:44:14 +0000 (+0000) Subject: Add simple document for wxGUIEventLoop X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/3668a019dc12e306372aca8b511844c0c7a3d921?ds=sidebyside Add simple document for wxGUIEventLoop git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71835 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/evtloop.h b/interface/wx/evtloop.h index b60889ef34..4e42be0dc4 100644 --- a/interface/wx/evtloop.h +++ b/interface/wx/evtloop.h @@ -286,3 +286,20 @@ public: */ ~wxEventLoopActivator(); }; + +/** + @class wxGUIEventLoop + + A generic implementation of the GUI event loop. + + @library{wxbase} + @category{appmanagement} +*/ +class wxGUIEventLoop : public wxEventLoopBase +{ +public: + wxGUIEventLoop(); + virtual ~wxGUIEventLoop(); +}; + +