Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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
8namespace 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.