Changeset 8858 for code/trunk/src/libraries/core/ConfigValueIncludes.h
- Timestamp:
- Aug 23, 2011, 12:45:53 AM (14 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:ignore
-
old new 1 1 build 2 2 codeblocks 3 vs 3 4 dependencies
-
- Property svn:mergeinfo changed
/code/branches/output (added) merged: 8739-8740,8765,8771-8772,8774-8780,8787-8789,8794-8799,8801,8803-8812,8814,8816-8817,8820,8822,8825-8837,8840,8844,8846,8848-8850,8853-8854
- Property svn:ignore
-
code/trunk/src/libraries/core/ConfigValueIncludes.h
r8729 r8858 87 87 @code 88 88 MyObject orxonoxobject; 89 std::cout << "Name: " << orxonoxobject.getName() << std::endl;90 std::cout << "Version: " << orxonoxobject.getVersion() << std::endl;89 orxout() << "Name: " << orxonoxobject.getName() << endl; 90 orxout() << "Version: " << orxonoxobject.getVersion() << endl; 91 91 @endcode 92 92 … … 200 200 else 201 201 { 202 COUT(2) << "Warning:Couldn't reset config-value '" << entryName << "' in class '"203 << ClassIdentifier<T>::getIdentifier()->getName() << "', corresponding container doesn't exist." << std::endl;202 orxout(user_warning, context::config) << "Couldn't reset config-value '" << entryName << "' in class '" 203 << ClassIdentifier<T>::getIdentifier()->getName() << "', corresponding container doesn't exist." << endl; 204 204 } 205 205 } … … 238 238 else \ 239 239 { \ 240 COUT(2) << "Warning: Couln't modify config-value '" << entryName << "' in class '" \241 << ClassByObjectType(object)->getName() << "', corresponding container doesn't exist." << std::endl; \240 orxout(user_warning, context::config) << "Couldn't modify config-value '" << entryName << "' in class '" \ 241 << ClassByObjectType(object)->getName() << "', corresponding container doesn't exist." << endl; \ 242 242 } 243 243
Note: See TracChangeset
for help on using the changeset viewer.