Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 13, 2008, 3:52:29 PM (16 years ago)
Author:
rgrieder
Message:
  • fixed several errors and issues with visual studio under windows:
    • moved tixml into a separate static lib (has to be)
    • updated OrxonoxStableHeaders.h
    • added macro for XOR
    • exported << operators
    • removed TiXMLPrereqs.h, not anymore useful; merged it into XMLIncludes.h
Location:
code/trunk/src/orxonox/core
Files:
2 edited

Legend:

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

    r871 r890  
    592592        {
    593593            const Identifier* subclass = it->getClass();
    594             newmask.add(subclass, this->isIncluded(subclass) or other.isIncluded(subclass), false, false);
     594            newmask.add(subclass, this->isIncluded(subclass) || other.isIncluded(subclass), false, false);
    595595        }
    596596
     
    599599        {
    600600            const Identifier* subclass = it->getClass();
    601             newmask.add(subclass, this->isIncluded(subclass) or other.isIncluded(subclass), false, false);
     601            newmask.add(subclass, this->isIncluded(subclass) || other.isIncluded(subclass), false, false);
    602602        }
    603603
     
    623623        {
    624624            const Identifier* subclass = it->getClass();
    625             newmask.add(subclass, this->isIncluded(subclass) and other.isIncluded(subclass), false, false);
     625            newmask.add(subclass, this->isIncluded(subclass) && other.isIncluded(subclass), false, false);
    626626        }
    627627
     
    630630        {
    631631            const Identifier* subclass = it->getClass();
    632             newmask.add(subclass, this->isIncluded(subclass) and other.isIncluded(subclass), false, false);
     632            newmask.add(subclass, this->isIncluded(subclass) && other.isIncluded(subclass), false, false);
    633633        }
    634634
     
    737737        {
    738738            const Identifier* subclass = it->getClass();
    739             newmask.add(subclass, this->isIncluded(subclass) xor other.isIncluded(subclass), false, false);
     739            newmask.add(subclass, this->isIncluded(subclass) XOR other.isIncluded(subclass), false, false);
    740740        }
    741741
     
    744744        {
    745745            const Identifier* subclass = it->getClass();
    746             newmask.add(subclass, this->isIncluded(subclass) xor other.isIncluded(subclass), false, false);
     746            newmask.add(subclass, this->isIncluded(subclass) XOR other.isIncluded(subclass), false, false);
    747747        }
    748748
  • code/trunk/src/orxonox/core/Identifier.h

    r871 r890  
    206206    };
    207207
    208     std::ostream& operator<<(std::ostream& out, const std::list<const Identifier*>& list);
     208    _CoreExport std::ostream& operator<<(std::ostream& out, const std::list<const Identifier*>& list);
    209209
    210210
Note: See TracChangeset for help on using the changeset viewer.