Changeset 3156 for code/branches/pch/src/core
- Timestamp:
- Jun 13, 2009, 4:57:55 PM (16 years ago)
- Location:
- code/branches/pch/src/core
- Files:
-
- 1 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pch/src/core/BaseObject.h
r3154 r3156 53 53 #include "OrxonoxClass.h" 54 54 #include "Super.h" 55 #include "XMLIncludes.h"56 55 57 56 namespace orxonox -
code/branches/pch/src/core/Core.h
r2896 r3156 44 44 #include "OrxonoxClass.h" 45 45 #include "util/OutputHandler.h" 46 47 // boost::filesystem header has quite a large tail, use forward declaration48 namespace boost { namespace filesystem49 {50 struct path_traits;51 template<class String, class Traits> class basic_path;52 typedef basic_path< std::string, path_traits> path;53 } }54 46 55 47 namespace orxonox -
code/branches/pch/src/core/CorePrereqs.h
r3155 r3156 195 195 } 196 196 197 // Boost 198 namespace boost { namespace filesystem 199 { 200 struct path_traits; 201 template <class String, class Traits> class basic_path; 202 typedef basic_path<std::string, path_traits> path; 203 } } 204 205 // TinyXML and TinyXML++ 206 class TiXmlString; 207 class TiXmlOutStream; 208 class TiXmlNode; 209 class TiXmlHandle; 210 class TiXmlDocument; 211 class TiXmlElement; 212 class TiXmlComment; 213 class TiXmlUnknown; 214 class TiXmlAttribute; 215 class TiXmlText; 216 class TiXmlDeclaration; 217 class TiXmlParsingData; 218 namespace ticpp 219 { 220 class Document; 221 class Element; 222 class Declaration; 223 class StylesheetReference; 224 class Text; 225 class Comment; 226 class Attribute; 227 } 228 namespace orxonox 229 { 230 using ticpp::Document; 231 using ticpp::Element; 232 using ticpp::Declaration; 233 using ticpp::StylesheetReference; 234 using ticpp::Text; 235 using ticpp::Comment; 236 using ticpp::Attribute; 237 } 238 239 197 240 #endif /* _CorePrereqs_H__ */ -
code/branches/pch/src/core/Namespace.h
r3154 r3156 34 34 #include <set> 35 35 #include <string> 36 #include "XMLIncludes.h"37 36 #include "BaseObject.h" 38 37 -
code/branches/pch/src/core/Super.h
r3154 r3156 70 70 71 71 #include "util/Debug.h" 72 #include "XMLIncludes.h"73 72 #include "Event.h" 74 73 -
code/branches/pch/src/core/XMLPort.h
r3154 r3156 54 54 #include "Executor.h" 55 55 #include "BaseObject.h" 56 #include "XMLIncludes.h"57 56 58 57 // ------------
Note: See TracChangeset
for help on using the changeset viewer.