source:
orxonox.OLD/branches/qt_gui/src/lib/gui/gui.h
@
7481
Last change on this file since 7481 was 7476, checked in by bensch, 19 years ago | |
---|---|
File size: 499 bytes |
Rev | Line | |
---|---|---|
[4838] | 1 | /*! |
[7476] | 2 | * @file gui.h |
[4838] | 3 | * @brief Definition of ... |
[3245] | 4 | */ |
[1853] | 5 | |
[7476] | 6 | #ifndef _GUI_H |
7 | #define _GUI_H | |
[1853] | 8 | |
[3543] | 9 | #include "base_object.h" |
[1853] | 10 | |
[4838] | 11 | // FORWARD DECLARATION |
[3543] | 12 | |
[7476] | 13 | namespace OrxGui |
14 | { | |
15 | //! A class for ... | |
16 | class Gui : public BaseObject | |
17 | { | |
[3543] | 18 | |
[7476] | 19 | public: |
20 | Gui(); | |
21 | virtual ~Gui(); | |
[2036] | 22 | |
[7476] | 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.