]> git.saurik.com Git - wxWidgets.git/commitdiff
Add simple document for wxGUIEventLoop
authorRobin Dunn <robin@alldunn.com>
Sat, 23 Jun 2012 00:44:14 +0000 (00:44 +0000)
committerRobin Dunn <robin@alldunn.com>
Sat, 23 Jun 2012 00:44:14 +0000 (00:44 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71835 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/evtloop.h

index b60889ef34edd72d9a5a83f84669c56b3f6d0d28..4e42be0dc46f8b819890e0fc58fb9c59040ecf28 100644 (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();
+};
+
+