Changeset 1024 for code/trunk/src/orxonox/core
- Timestamp:
- Apr 10, 2008, 5:35:49 PM (17 years ago)
- Location:
- code/trunk/src/orxonox/core
- Files:
-
- 2 deleted
- 7 edited
- 7 copied
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/core/CMakeLists.txt
r1021 r1024 5 5 Identifier.cc 6 6 IdentifierDistributor.cc 7 InputHandler.cc 8 InputManager.cc 7 9 MetaObjectList.cc 8 10 ConfigValueContainer.cc 9 11 Error.cc 10 12 SignalHandler.cc 11 ArgReader.cc12 13 DebugLevel.cc 13 14 OutputHandler.cc -
code/trunk/src/orxonox/core/CorePrereqs.h
r871 r1024 27 27 28 28 /** 29 @file CorePrereq.h30 @brief Contains all the necessary forward declarations for all classes, structs and enums.29 @file 30 @brief Contains all the necessary forward declarations for all classes and structs. 31 31 */ 32 32 … … 36 36 #include <string> 37 37 38 #include " orxonox/OrxonoxPlatform.h"38 #include "OrxonoxPlatform.h" 39 39 40 40 //----------------------------------------------------------------------- … … 67 67 typedef std::string LanguageEntryLabel; 68 68 69 class ArgReader;70 69 class BaseFactory; 71 70 class BaseMetaObjectListElement; 71 class BaseObject; 72 72 template <class T> 73 73 class ClassFactory; … … 86 86 class Identifier; 87 87 class IdentifierDistributor; 88 class InputHandlerGame; 89 class InputHandlerGUI; 90 class InputManager; 88 91 template <class T> 89 92 class Iterator; … … 103 106 template <class T> 104 107 class SubclassIdentifier; 108 class Tickable; 105 109 template <class T, class O> 106 110 class XMLPortClassObjectContainer; -
code/trunk/src/orxonox/core/Factory.h
r871 r1024 51 51 namespace orxonox 52 52 { 53 class BaseObject; // Forward declaration54 55 53 // ############################### 56 54 // ### Factory ### -
code/trunk/src/orxonox/core/Identifier.h
r890 r1024 33 33 - the name 34 34 - a list with all objects 35 - parents and child s35 - parents and children 36 36 - the factory (if available) 37 37 - the networkID that can be synchronised with the server … … 65 65 namespace orxonox 66 66 { 67 class BaseFactory; // Forward declaration68 class BaseObject; // Forward declaration69 70 67 // ############################### 71 68 // ### Identifier ### -
code/trunk/src/orxonox/core/MetaObjectList.h
r871 r1024 113 113 This allows much faster deletion of objects because no iteration is needed. 114 114 */ 115 class MetaObjectList115 class _CoreExport MetaObjectList 116 116 { 117 117 public: -
code/trunk/src/orxonox/core/Script.cc
r1021 r1024 38 38 } 39 39 40 #include " tolua++.h"41 #include " ../../util/tolua/tolua_bind.h"40 #include "util/tolua/tolua++.h" 41 #include "util/tolua/tolua_bind.h" 42 42 43 43 namespace orxonox … … 57 57 { 58 58 output_ += str; 59 COUT( 0) << "Lua_output!:" << std::endl << str << std::endl << "***" << std::endl;59 COUT(4) << "Lua_output!:" << std::endl << str << std::endl << "***" << std::endl; 60 60 } 61 61 … … 89 89 90 90 if (luaTags) luaSource_ = replaceLuaTags(levelString); 91 COUT( 0) << "ParsedSourceCode: " << luaSource_ << std::endl;91 COUT(4) << "ParsedSourceCode: " << luaSource_ << std::endl; 92 92 } 93 93 … … 100 100 if (error == 0) 101 101 error = lua_pcall(luaState_, 0, 0, 0); 102 if (error != 0) COUT( 0) << "Error in Lua-script: " << lua_tostring(luaState_, -1) << std::endl;102 if (error != 0) COUT(2) << "Error in Lua-script: " << lua_tostring(luaState_, -1) << std::endl; 103 103 } 104 104 -
code/trunk/src/orxonox/core/Tickable.h
r1021 r1024 46 46 namespace orxonox 47 47 { 48 //class TickFrameListener; // Forward declaration49 50 48 //! The Tickable interface provides a tick(dt) function, that gets called every frame. 51 49 class _CoreExport Tickable : virtual public OrxonoxClass
Note: See TracChangeset
for help on using the changeset viewer.