Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/qt_gui/src/lib/gui/qt_gui/qt_gui.h @ 7473

Last change on this file since 7473 was 7473, checked in by bensch, 18 years ago

sync

File size: 592 bytes
Line 
1/*!
2 * @file qt_gui.h
3 * @brief Definition of ...
4*/
5
6#ifndef __QT_GUI_H
7#define __QT_GUI_H
8
9#include "../gui.h"
10#include "gui_element.h"
11namespace OrxGui
12{
13  class QtGui : public OrxGui::Gui
14  {
15    public:
16      QtGui();
17      virtual ~QtGui();
18
19    //! Start the Gui
20      virtual void startGui();
21    //! Stop the gui
22      virtual void stopGui();
23    //! Suspend the Gui.
24      virtual void suspend();
25    //! Update the Gui.
26      virtual void update();
27
28
29    private:
30      std::list<GuiElement*>    elements;   //!< A List of Elements within the QTGui
31  };
32}
33
34#endif /* __QT_GUI_H */
Note: See TracBrowser for help on using the repository browser.