Changeset 9543 for code/branches/testing/src/libraries
- Timestamp:
- Mar 10, 2013, 7:22:59 PM (12 years ago)
- Location:
- code/branches/testing/src/libraries/util/output
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/testing/src/libraries/util/output/OutputListener.h
r9534 r9543 81 81 82 82 /// @brief Called by OutputManager for each line of output, checks if this listener actually accepts this output before it calls the output() function. 83 inlinevoid unfilteredOutput(OutputLevel level, const OutputContextContainer& context, const std::vector<std::string>& lines)83 virtual void unfilteredOutput(OutputLevel level, const OutputContextContainer& context, const std::vector<std::string>& lines) 84 84 { if (this->acceptsOutput(level, context)) this->output(level, context, lines); } 85 85 -
code/branches/testing/src/libraries/util/output/OutputManager.cc
r9540 r9543 60 60 this->consoleWriterInstance_ = 0; 61 61 this->logWriterInstance_ = 0; 62 63 // register 'undefined' context in order to give it always the first context-ID 64 this->registerContext("undefined"); 62 65 } 63 66 -
code/branches/testing/src/libraries/util/output/OutputManager.h
r9540 r9543 109 109 { return this->listeners_; } 110 110 111 inline OutputLevel getCombinedLevelMask() const { return this->combinedLevelMask_; } 112 inline OutputLevel getCombinedAdditionalContextsLevelMask() const { return this->combinedAdditionalContextsLevelMask_; } 113 inline OutputContextMask getCombinedAdditionalContextsMask() const { return this->combinedAdditionalContextsMask_; } 114 111 115 private: 112 116 void updateMasks();
Note: See TracChangeset
for help on using the changeset viewer.