Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 15, 2008, 4:31:58 PM (16 years ago)
Author:
landauf
Message:
  • removed IdentifierList and replaced it by a std::list
  • changed several doxygen tags
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core/src/orxonox/core/ClassTreeMask.cc

    r811 r813  
    2626 */
    2727
    28 /*!
     28/**
    2929    @file ClassTreeMask.cc
    3030    @brief Implementation of the ClassTreeMask, ClassTreeMaskNode and ClassTreeMaskIterator classes.
     
    294294    void ClassTreeMask::add(const Identifier* subclass, bool bInclude)
    295295    {
    296         this->add(this->root_, subclass, bInclude);
     296        if (subclass->isA(this->root_->getClass()))
     297            this->add(this->root_, subclass, bInclude);
     298        else
     299        {
     300
     301        }
     302
     303        this->clean();
    297304    }
    298305
Note: See TracChangeset for help on using the changeset viewer.