source:
code/branches/objecthierarchy/src/orxonox/objects/BaseObject.cc
@
706
Last change on this file since 706 was 452, checked in by landauf, 17 years ago | |
---|---|
File size: 441 bytes |
Rev | Line | |
---|---|---|
[452] | 1 | /*! |
2 | @file BaseObject.cc | |
3 | @brief Implementation of the BaseObject class. | |
4 | */ | |
5 | ||
[132] | 6 | #include "BaseObject.h" |
7 | ||
[149] | 8 | namespace orxonox |
9 | { | |
[218] | 10 | CreateFactory(BaseObject); |
11 | ||
[452] | 12 | /** |
13 | @brief Constructor: Registers the object in the BaseObject-list. | |
14 | */ | |
[132] | 15 | BaseObject::BaseObject() |
16 | { | |
[244] | 17 | RegisterRootObject(BaseObject); |
[132] | 18 | } |
19 | ||
[452] | 20 | /** |
21 | @brief Destructor | |
22 | */ | |
[132] | 23 | BaseObject::~BaseObject() |
24 | { | |
25 | } | |
[149] | 26 | } |
Note: See TracBrowser
for help on using the repository browser.