Add simple document for wxGUIEventLoop

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71835 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2012-06-23 00:44:14 +00:00
parent f94d58dd75
commit 3668a019dc

View File

@ -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();
};