Changeset 890 for code/trunk/src/orxonox/core
- Timestamp:
- Mar 13, 2008, 3:52:29 PM (17 years ago)
- Location:
- code/trunk/src/orxonox/core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/core/ClassTreeMask.cc
r871 r890 592 592 { 593 593 const Identifier* subclass = it->getClass(); 594 newmask.add(subclass, this->isIncluded(subclass) orother.isIncluded(subclass), false, false);594 newmask.add(subclass, this->isIncluded(subclass) || other.isIncluded(subclass), false, false); 595 595 } 596 596 … … 599 599 { 600 600 const Identifier* subclass = it->getClass(); 601 newmask.add(subclass, this->isIncluded(subclass) orother.isIncluded(subclass), false, false);601 newmask.add(subclass, this->isIncluded(subclass) || other.isIncluded(subclass), false, false); 602 602 } 603 603 … … 623 623 { 624 624 const Identifier* subclass = it->getClass(); 625 newmask.add(subclass, this->isIncluded(subclass) andother.isIncluded(subclass), false, false);625 newmask.add(subclass, this->isIncluded(subclass) && other.isIncluded(subclass), false, false); 626 626 } 627 627 … … 630 630 { 631 631 const Identifier* subclass = it->getClass(); 632 newmask.add(subclass, this->isIncluded(subclass) andother.isIncluded(subclass), false, false);632 newmask.add(subclass, this->isIncluded(subclass) && other.isIncluded(subclass), false, false); 633 633 } 634 634 … … 737 737 { 738 738 const Identifier* subclass = it->getClass(); 739 newmask.add(subclass, this->isIncluded(subclass) xorother.isIncluded(subclass), false, false);739 newmask.add(subclass, this->isIncluded(subclass) XOR other.isIncluded(subclass), false, false); 740 740 } 741 741 … … 744 744 { 745 745 const Identifier* subclass = it->getClass(); 746 newmask.add(subclass, this->isIncluded(subclass) xorother.isIncluded(subclass), false, false);746 newmask.add(subclass, this->isIncluded(subclass) XOR other.isIncluded(subclass), false, false); 747 747 } 748 748 -
code/trunk/src/orxonox/core/Identifier.h
r871 r890 206 206 }; 207 207 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); 209 209 210 210
Note: See TracChangeset
for help on using the changeset viewer.