Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7473 in orxonox.OLD for branches/qt_gui/src/lib/gui/qt_gui/qt_gui.h


Ignore:
Timestamp:
May 2, 2006, 9:59:37 AM (18 years ago)
Author:
bensch
Message:

sync

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/qt_gui/src/lib/gui/qt_gui/qt_gui.h

    r7472 r7473  
    88
    99#include "../gui.h"
    10 #include <list>
    11 
     10#include "gui_element.h"
    1211namespace OrxGui
    1312{
     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  };
    1432}
    1533
Note: See TracChangeset for help on using the changeset viewer.