Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/orxonox/core/MetaObjectList.cc @ 258

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

merged object-hierarchy back to trunk

File size: 393 bytes
Line 
1#include "MetaObjectList.h"
2
3namespace orxonox
4{
5    MetaObjectList::MetaObjectList()
6    {
7        this->first_ = 0;
8    }
9
10    MetaObjectList::~MetaObjectList()
11    {
12        BaseMetaObjectListElement* temp;
13        while (this->first_)
14        {
15            temp = this->first_->next_;
16            delete this->first_;
17            this->first_ = temp;
18        }
19    }
20}
Note: See TracBrowser for help on using the repository browser.