Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
May 2, 2006, 7:39:56 PM (18 years ago)
Author:
bensch
Message:

qt_gui: added some missing files

File:
1 copied

Legend:

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

    r7469 r7476  
    11/*!
    2  * @file proto_class.h
     2 * @file gui.h
    33 * @brief Definition of ...
    44*/
    55
    6 #ifndef _PROTO_CLASS_H
    7 #define _PROTO_CLASS_H
     6#ifndef _GUI_H
     7#define _GUI_H
    88
    99#include "base_object.h"
     
    1111// FORWARD DECLARATION
    1212
     13namespace OrxGui
     14{
     15  //! A class for ...
     16  class Gui : public BaseObject
     17  {
    1318
     19  public:
     20    Gui();
     21    virtual ~Gui();
    1422
    15 //! A class for ...
    16 class ProtoClass : public BaseObject {
    17 
    18  public:
    19   ProtoClass();
    20   virtual ~ProtoClass();
    21 
    22 
    23  private:
    24 
    25 };
    26 
    27 #endif /* _PROTO_CLASS_H */
     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 TracChangeset for help on using the changeset viewer.