Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 17, 2008, 5:05:54 PM (16 years ago)
Author:
landauf
Message:
  • added == and != operator to the ClassTreeMask
  • Included the Namespace in the Loader
File:
1 edited

Legend:

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

    r895 r896  
    4141
    4242        this->bAutogeneratedFileRootNamespace_ = false;
     43        this->bDeleteNamespaceNodesAfterDestruction_ = false;
    4344        this->operator_ = "or";
    4445    }
     
    4647    Namespace::~Namespace()
    4748    {
     49        if (this->bDeleteNamespaceNodesAfterDestruction_)
     50            for (std::set<NamespaceNode*>::iterator it = this->representingNamespaces_.begin(); it != this->representingNamespaces_.end(); ++it)
     51                delete (*it);
    4852    }
    4953
Note: See TracChangeset for help on using the changeset viewer.