|
Last change
on this file since 591 was
452,
checked in by landauf, 18 years ago
|
|
More documentation and comments (it's so much fun!)
|
|
File size:
441 bytes
|
| Line | |
|---|
| 1 | /*! |
|---|
| 2 | @file BaseObject.cc |
|---|
| 3 | @brief Implementation of the BaseObject class. |
|---|
| 4 | */ |
|---|
| 5 | |
|---|
| 6 | #include "BaseObject.h" |
|---|
| 7 | |
|---|
| 8 | namespace orxonox |
|---|
| 9 | { |
|---|
| 10 | CreateFactory(BaseObject); |
|---|
| 11 | |
|---|
| 12 | /** |
|---|
| 13 | @brief Constructor: Registers the object in the BaseObject-list. |
|---|
| 14 | */ |
|---|
| 15 | BaseObject::BaseObject() |
|---|
| 16 | { |
|---|
| 17 | RegisterRootObject(BaseObject); |
|---|
| 18 | } |
|---|
| 19 | |
|---|
| 20 | /** |
|---|
| 21 | @brief Destructor |
|---|
| 22 | */ |
|---|
| 23 | BaseObject::~BaseObject() |
|---|
| 24 | { |
|---|
| 25 | } |
|---|
| 26 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.