source:
code/branches/FICN/src/orxonox/objects/BaseObject.cc
@
502
| Last change on this file since 502 was 496, checked in by landauf, 18 years ago | |
|---|---|
| File size: 441 bytes | |
| Rev | Line | |
|---|---|---|
| [496] | 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 | ||
| [496] | 12 | /** |
| 13 | @brief Constructor: Registers the object in the BaseObject-list. | |
| 14 | */ | |
| [132] | 15 | BaseObject::BaseObject() |
| 16 | { | |
| [244] | 17 | RegisterRootObject(BaseObject); |
| [132] | 18 | } |
| 19 | ||
| [496] | 20 | /** |
| 21 | @brief Destructor | |
| 22 | */ | |
| [132] | 23 | BaseObject::~BaseObject() |
| 24 | { | |
| 25 | } | |
| [149] | 26 | } |
Note: See TracBrowser
for help on using the repository browser.










