Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/objecthierarchie/src/BaseObject.cc @ 244

Last change on this file since 244 was 244, checked in by landauf, 16 years ago

reimplementation of the factory and parts of the class-hierarchy-generating-algorithm. interfaces with protected constructors are now allowed.

File size: 247 bytes
RevLine 
[132]1#include "BaseObject.h"
2
[149]3namespace orxonox
4{
[218]5    CreateFactory(BaseObject);
6
[132]7    BaseObject::BaseObject()
8    {
[244]9        RegisterRootObject(BaseObject);
[132]10    }
11
12    BaseObject::~BaseObject()
13    {
[244]14        UnregisterObject();
[132]15    }
[149]16}
Note: See TracBrowser for help on using the repository browser.