Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/src/orxonox/objects/BaseObject.cc @ 504

Last change on this file since 504 was 496, checked in by landauf, 18 years ago

added files from objecthierarchy, changed includes

File size: 441 bytes
RevLine 
[496]1/*!
2    @file BaseObject.cc
3    @brief Implementation of the BaseObject class.
4*/
5
[132]6#include "BaseObject.h"
7
[149]8namespace 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.