Changeset 893 for code/branches/input/src
- Timestamp:
- Mar 13, 2008, 4:15:41 PM (17 years ago)
- Location:
- code/branches/input/src
- Files:
-
- 1 deleted
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/input/src/orxonox/OrxonoxPlatform.h
r790 r893 251 251 #endif 252 252 253 254 // Create a logical xor operator 255 #if ORXONOX_COMPILER == ORXONOX_COMPILER_MSVC 256 # define XOR ^ 257 #elif ORXONOX_COMPILER == ORXONOX_COMPILER_GCC 258 # define XOR xor 259 #else 260 # define XOR ^ 261 #endif 262 253 263 } /* namespace orxonox */ 254 264 -
code/branches/input/src/orxonox/OrxonoxStableHeaders.h
r871 r893 87 87 #include "util/String2Number.h" 88 88 #include "util/Tokenizer.h" 89 #include "util/Multitype.h" 90 #include "util/MultiTypeMath.h" 91 #include "util/MultiTypePrimitive.h" 92 #include "util/MultiTypeString.h" 93 #include "util/substring.h" 94 #include "util/XMLIncludes.h" 95 89 96 #include "util/tinyxml/ticpp.h" 90 97 #include "util/tinyxml/tinyxml.h" -
code/branches/input/src/orxonox/core/ClassTreeMask.cc
r871 r893 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/branches/input/src/orxonox/core/Identifier.h
r871 r893 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 -
code/branches/input/src/orxonox/objects/Tickable.cc
r871 r893 1 /* 2 * ORXONOX - the hottest 3D action shooter ever to exist 3 * 4 * 5 * License notice: 6 * 7 * This program is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU General Public License 9 * as published by the Free Software Foundation; either version 2 10 * of the License, or (at your option) any later version. 11 * 12 * This program is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with this program; if not, write to the Free Software 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 20 * 21 * Author: 22 * Fabian 'x3n' Landau 23 * Co-authors: 24 * ... 25 * 26 */ 27 28 #include "OrxonoxStableHeaders.h" 29 1 30 #include "core/CoreIncludes.h" 2 31 #include "Tickable.h" -
code/branches/input/src/orxonox/tools/Timer.cc
r871 r893 1 /* 2 * ORXONOX - the hottest 3D action shooter ever to exist 3 * 4 * 5 * License notice: 6 * 7 * This program is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU General Public License 9 * as published by the Free Software Foundation; either version 2 10 * of the License, or (at your option) any later version. 11 * 12 * This program is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with this program; if not, write to the Free Software 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 20 * 21 * Author: 22 * Fabian 'x3n' Landau 23 * Co-authors: 24 * ... 25 * 26 */ 27 28 #include "OrxonoxStableHeaders.h" 29 1 30 #include "core/CoreIncludes.h" 2 31 #include "Timer.h" -
code/branches/input/src/util/Math.h
r871 r893 147 147 148 148 #endif /* _Math_H__ */ 149 -
code/branches/input/src/util/MultiTypeMath.h
r871 r893 153 153 }; 154 154 155 std::ostream& operator<<(std::ostream& out, MultiTypeMath& mtm);155 _UtilExport std::ostream& operator<<(std::ostream& out, MultiTypeMath& mtm); 156 156 157 157 #endif /* _MultiTypeMath_H__ */ -
code/branches/input/src/util/MultiTypePrimitive.h
r871 r893 175 175 }; 176 176 177 std::ostream& operator<<(std::ostream& out, const MultiTypePrimitive& mtp);177 _UtilExport std::ostream& operator<<(std::ostream& out, const MultiTypePrimitive& mtp); 178 178 179 179 #endif /* _MultiTypePrimitive_H__ */ -
code/branches/input/src/util/MultiTypeString.h
r871 r893 109 109 }; 110 110 111 std::ostream& operator<<(std::ostream& out, MultiTypeString& mts);111 _UtilExport std::ostream& operator<<(std::ostream& out, MultiTypeString& mts); 112 112 113 113 #endif /* _MultiTypeString_H__ */ -
code/branches/input/src/util/XMLIncludes.h
r871 r893 1 #include "util/tinyxml/TinyXMLPrereqs.h" 1 //----------------------------------------------------------------------- 2 // Forward declarations 3 //----------------------------------------------------------------------- 4 5 class TiXmlString; 6 class TiXmlOutStream; 7 class TiXmlNode; 8 class TiXmlHandle; 9 class TiXmlDocument; 10 class TiXmlElement; 11 class TiXmlComment; 12 class TiXmlUnknown; 13 class TiXmlAttribute; 14 class TiXmlText; 15 class TiXmlDeclaration; 16 class TiXmlParsingData; 17 18 namespace ticpp 19 { 20 class Document; 21 class Element; 22 class Declaration; 23 class StylesheetReference; 24 class Text; 25 class Comment; 26 class Attribute; 27 } 2 28 3 29 namespace orxonox
Note: See TracChangeset
for help on using the changeset viewer.