Last change
on this file since 197 was
197,
checked in by landauf, 17 years ago
|
i didnt changed much:
- separated the classes into several files
- did some tests: it works with cc files (@ bensch)
- finished BaseIdentifier
|
File size:
308 bytes
|
Rev | Line | |
---|
[197] | 1 | #include "ClassHierarchy.h" |
---|
[162] | 2 | #include "OrxonoxClass.h" |
---|
| 3 | |
---|
| 4 | namespace 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.