Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/objecthierarchie/src/OrxonoxClass.cc @ 176

Last change on this file since 176 was 162, checked in by landauf, 16 years ago

it starts to work, but there is still much to do.

@bensch: thanks for you mail, but i can't tell you much at the moment - i'm still changing lots of things and i have no idea if everything will work as intendet, so i'll write you as soon as i have reliable informations :)
</abuse log for pms>

File size: 308 bytes
Line 
1#include "OrxonoxClass.h"
2#include "ClassHierarchy.h"
3
4namespace orxonox
5{
6    OrxonoxClass::OrxonoxClass()
7    {
8        this->identifier_ = 0;
9        this->parents_ = 0;
10    }
11
12    OrxonoxClass::~OrxonoxClass()
13    {
14        if (this->parents_)
15            delete this->parents_;
16    }
17}
Note: See TracBrowser for help on using the repository browser.