source:
code/branches/objecthierarchie/src/BaseObject.cc
@
241
Last change on this file since 241 was 218, checked in by landauf, 17 years ago | |
---|---|
File size: 247 bytes |
Rev | Line | |
---|---|---|
[132] | 1 | #include "BaseObject.h" |
2 | ||
[149] | 3 | namespace orxonox |
4 | { | |
[218] | 5 | CreateFactory(BaseObject); |
6 | ||
[132] | 7 | BaseObject::BaseObject() |
8 | { | |
[149] | 9 | registerRootObject(BaseObject); |
[132] | 10 | } |
11 | ||
12 | BaseObject::~BaseObject() | |
13 | { | |
[149] | 14 | unregisterObject(); |
[132] | 15 | } |
[149] | 16 | } |
Note: See TracBrowser
for help on using the repository browser.