- Timestamp:
- Dec 10, 2007, 5:07:46 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy/src/orxonox/core/CoreIncludes.h
r450 r453 17 17 #include "OrxonoxClass.h" 18 18 #include "ConfigValueContainer.h" 19 #include "Debug.h" 19 20 20 21 #include "OgreVector2.h" … … 56 57 @param ClassName The name of the class 57 58 */ 58 #if HIERARCHY_VERBOSE59 59 #define RegisterObject(ClassName) \ 60 std::cout<< "*** Register Object: " << #ClassName << "\n"; \60 COUT(4) << "*** Register Object: " << #ClassName << "\n"; \ 61 61 InternRegisterObject(ClassName, false) 62 #else63 #define RegisterObject(ClassName) \64 InternRegisterObject(ClassName, false)65 #endif66 62 67 63 /** … … 69 65 @param ClassName The name of the class 70 66 */ 71 #if HIERARCHY_VERBOSE72 67 #define RegisterRootObject(ClassName) \ 73 std::cout<< "*** Register Root-Object: " << #ClassName << "\n"; \68 COUT(4) << "*** Register Root-Object: " << #ClassName << "\n"; \ 74 69 InternRegisterRootObject(ClassName) 75 #else76 #define RegisterRootObject(ClassName) \77 InternRegisterRootObject(ClassName)78 #endif79 70 80 71 /**
Note: See TracChangeset
for help on using the changeset viewer.