Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 5, 2008, 2:18:14 PM (17 years ago)
Author:
rgrieder
Message:
  • applied patch to remove ClassManager (wouldn't wanna maintain it anymore ;))
  • sorted core CMLs a little bit
  • updated OrxonoxStableHeaders.h
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/core/ClassTreeMask.cc

    r1505 r1543  
    266266    ClassTreeMask::ClassTreeMask()
    267267    {
    268         this->root_ = new ClassTreeMaskNode(ClassManager<BaseObject>::getIdentifier(), true);
     268        this->root_ = new ClassTreeMaskNode(ClassIdentifier<BaseObject>::getIdentifier(), true);
    269269    }
    270270
     
    275275    ClassTreeMask::ClassTreeMask(const ClassTreeMask& other)
    276276    {
    277         this->root_ = new ClassTreeMaskNode(ClassManager<BaseObject>::getIdentifier(), true);
     277        this->root_ = new ClassTreeMaskNode(ClassIdentifier<BaseObject>::getIdentifier(), true);
    278278        for (ClassTreeMaskIterator it = other.root_; it; ++it)
    279279            this->add(it->getClass(), it->isIncluded(), false);
     
    435435    {
    436436        delete this->root_;
    437         this->root_ = new ClassTreeMaskNode(ClassManager<BaseObject>::getIdentifier(), true);
     437        this->root_ = new ClassTreeMaskNode(ClassIdentifier<BaseObject>::getIdentifier(), true);
    438438    }
    439439
Note: See TracChangeset for help on using the changeset viewer.