Changeset 5360 in orxonox.OLD for trunk/src/lib/gui/gl_gui/glgui_cursor.cc
- Timestamp:
- Oct 11, 2005, 12:53:49 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/gui/gl_gui/glgui_cursor.cc
r5314 r5360 10 10 11 11 ### File Specific: 12 main-programmer: ...12 main-programmer: Benjamin Grauer 13 13 co-programmer: ... 14 14 */ 15 15 16 //#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_ 16 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_GUI 17 17 18 #include " proto_class.h"18 #include "glgui_.h" 19 19 20 20 using namespace std; 21 21 22 23 22 /** 24 23 * standard constructor 25 * @todo this constructor is not jet implemented - do it26 24 */ 27 ProtoClass::ProtoClass()25 GLGui::GLGui () 28 26 { 29 this->setClassID(CL_PROTO_ID, "ProtoClass");27 this->init(); 30 28 31 /* If you make a new class, what is most probably the case when you write this file32 don't forget to:33 1. Add the new file new_class.cc to the ./src/Makefile.am34 2. Add the class identifier to ./src/class_id.h eg. CL_NEW_CLASS35 36 Advanced Topics:37 - if you want to let your object be managed via the ObjectManager make sure to read38 the object_manager.h header comments. You will use this most certanly only if you39 make many objects of your class, like a weapon bullet.40 */41 29 } 42 30 … … 45 33 * standard deconstructor 46 34 */ 47 ProtoClass::~ProtoClass()35 GLGui::~GLGui() 48 36 { 49 // delete what has to be deleted here 37 50 38 } 39 40 /** 41 * initializes the GUI-element 42 */ 43 GLGui::init() 44 { 45 this->setClassID(CL_GLGUI_, "GLGui"); 46 47 } 48 49 /** 50 * draws the GLGui 51 */ 52 void GLGui::draw() 53 { 54 55 }
Note: See TracChangeset
for help on using the changeset viewer.