Changeset 8849 for code/branches
- Timestamp:
- Aug 21, 2011, 4:50:36 PM (13 years ago)
- Location:
- code/branches/output/src/libraries
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/output/src/libraries/core/CoreIncludes.h
r8788 r8849 34 34 /** 35 35 @file 36 @ingroup Object Factory 36 @ingroup Object Factory Class Identifier 37 37 @brief Defines several very important macros used to register objects, create factories, and to work with identifiers. 38 38 -
code/branches/output/src/libraries/core/command/CommandExecutor.cc
r8836 r8849 73 73 int error; 74 74 CommandExecutor::queryMT(command, &error, useTcl); 75 if (error )75 if (error && printErrors) 76 76 orxout(user_error) << "Can't execute \"" << command << "\", " << CommandExecutor::getErrorDescription(error) << ". (execute)" << endl; 77 77 return error; -
code/branches/output/src/libraries/util/output/OutputStream.cc
r8848 r8849 55 55 56 56 /** 57 @brief Destructor, sends remaining output to OutputManager (if any). 58 */ 59 OutputStream::~OutputStream() 60 { 61 if (this->str() != "") 62 *this << " [missing endl]" << std::endl; 63 } 64 65 /** 57 66 @brief Sends the buffered message to OutputManager together with the stored level and context. 58 67 Additionally empties the buffer. -
code/branches/output/src/libraries/util/output/OutputStream.h
r8848 r8849 78 78 _UtilExport OutputStream(); 79 79 _UtilExport OutputStream(OutputLevel level, const OutputContextContainer& context); 80 _UtilExport ~OutputStream(); 80 81 81 82 void _UtilExport setOutputAttributes(OutputLevel level, const OutputContextContainer& context);
Note: See TracChangeset
for help on using the changeset viewer.