Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


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.cc

    r7469 r7476  
    1616//#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_
    1717
    18 #include "proto_class.h"
     18#include "gui.h"
    1919
    20 using namespace std;
     20namespace OrxGui
     21{
    2122
    2223
    23 /**
    24  * standard constructor
    25  * @todo this constructor is not jet implemented - do it
    26 */
    27 ProtoClass::ProtoClass ()
    28 {
    29    this->setClassID(CL_PROTO_ID, "ProtoClass");
    30 
    31    /* If you make a new class, what is most probably the case when you write this file
    32       don't forget to:
    33        1. Add the new file new_class.cc to the ./src/Makefile.am
    34        2. Add the class identifier to ./src/class_id.h eg. CL_NEW_CLASS
    35 
    36       Advanced Topics:
    37       - if you want to let your object be managed via the ObjectManager make sure to read
    38         the object_manager.h header comments. You will use this most certanly only if you
    39         make many objects of your class, like a weapon bullet.
    40    */
    41 }
     24  /**
     25   * standard constructor
     26  */
     27  Gui::Gui ()
     28  {
     29    //this->setClassID(CL_PROTO_ID, "Gui");
     30  }
    4231
    4332
    44 /**
    45  * standard deconstructor
    46 */
    47 ProtoClass::~ProtoClass ()
    48 {
    49   // delete what has to be deleted here
     33  /**
     34   * standard deconstructor
     35  */
     36  Gui::~Gui ()
     37  {
     38    // delete what has to be deleted here
     39  }
    5040}
Note: See TracChangeset for help on using the changeset viewer.