Changeset 3156 for code/branches/pch/src
- Timestamp:
- Jun 13, 2009, 4:57:55 PM (15 years ago)
- Location:
- code/branches/pch/src
- Files:
-
- 1 deleted
- 10 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 // ------------ -
code/branches/pch/src/orxonox/OrxonoxPrereqs.h
r3130 r3156 299 299 namespace CEGUI 300 300 { 301 class DefaultLogger; 301 302 class LuaScriptModule; 302 303 … … 307 308 308 309 // Bullet Physics Engine 309 310 310 class btTransform; 311 311 class btVector3; … … 327 327 class btSequentialImpulseConstraintSolver; 328 328 329 // lua 329 // ALUT 330 typedef struct ALCcontext_struct ALCcontext; 331 typedef struct ALCdevice_struct ALCdevice; 332 typedef unsigned int ALuint; 333 typedef int ALint; 334 335 // Lua 330 336 struct lua_State; 331 337 -
code/branches/pch/src/orxonox/gui/GUIManager.h
r3153 r3156 45 45 46 46 #include "core/input/InputInterfaces.h" 47 48 // Forward declaration49 namespace CEGUI { class DefaultLogger; }50 47 51 48 // tolua_begin -
code/branches/pch/src/orxonox/sound/SoundBase.h
r3139 r3156 30 30 31 31 #include "OrxonoxPrereqs.h" 32 #include <string>33 34 // forward declarations35 typedef unsigned int ALuint;36 typedef int ALint;37 32 38 33 namespace orxonox -
code/branches/pch/src/orxonox/sound/SoundManager.h
r3133 r3156 33 33 #include "orxonox/objects/Tickable.h" 34 34 35 // forward declarations36 typedef struct ALCcontext_struct ALCcontext;37 typedef struct ALCdevice_struct ALCdevice;38 39 35 namespace orxonox 40 36 {
Note: See TracChangeset
for help on using the changeset viewer.