Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/lib/lang/class_list.cc @ 4744

Last change on this file since 4744 was 4744, checked in by bensch, 19 years ago

orxonox/trunk: classList.h some definitions

File size: 1.2 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11   ### File Specific:
12   main-programmer: ...
13   co-programmer: ...
14*/
15
16//#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_
17
18#include "class_list.h"
19
20using namespace std;
21
22
23/**
24   \brief standard constructor
25   \todo this constructor is not jet implemented - do it
26*/
27ClassList::ClassList ()
28{
29   /* If you make a new class, what is most probably the case when you write this file
30      don't forget to:
31       1. Add the new file new_class.cc to the ./src/Makefile.am
32       2. Add the class identifier to ./src/class_id.h eg. CL_NEW_CLASS
33
34      Advanced Topics:
35      - if you want to let your object be managed via the ObjectManager make sure to read
36        the object_manager.h header comments. You will use this most certanly only if you
37        make many objects of your class, like a weapon bullet.
38   */
39}
40
41
42/**
43   \brief standard deconstructor
44
45*/
46ClassList::~ClassList ()
47{
48  // delete what has to be deleted here
49}
Note: See TracBrowser for help on using the repository browser.