source:
code/branches/FICN/src/orxonox/core/OrxonoxClass.cc
@
363
Last change on this file since 363 was 258, checked in by landauf, 17 years ago | |
---|---|
File size: 363 bytes |
Line | |
---|---|
1 | #include "OrxonoxClass.h" |
2 | |
3 | namespace orxonox |
4 | { |
5 | OrxonoxClass::OrxonoxClass() |
6 | { |
7 | this->identifier_ = 0; |
8 | this->parents_ = 0; |
9 | |
10 | this->metaList_ = new MetaObjectList; |
11 | } |
12 | |
13 | OrxonoxClass::~OrxonoxClass() |
14 | { |
15 | if (this->parents_) |
16 | delete this->parents_; |
17 | |
18 | delete this->metaList_; |
19 | } |
20 | } |
Note: See TracBrowser
for help on using the repository browser.