Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

qt_gui: added some missing files

File size: 499 bytes
Line 
1/*!
2 * @file gui.h
3 * @brief Definition of ...
4*/
5
6#ifndef _GUI_H
7#define _GUI_H
8
9#include "base_object.h"
10
11// FORWARD DECLARATION
12
13namespace OrxGui
14{
15  //! A class for ...
16  class Gui : public BaseObject
17  {
18
19  public:
20    Gui();
21    virtual ~Gui();
22
23    //! Start the Gui
24    virtual void startGui() = 0;
25    //! Stop the gui
26    virtual void stopGui() = 0;
27    //! Suspend the Gui.
28    virtual void suspend() = 0;
29    //! Update the Gui.
30    virtual void update() = 0;
31  };
32}
33#endif /* _GUI_H */
Note: See TracBrowser for help on using the repository browser.