- Timestamp:
- Jan 17, 2016, 6:41:22 PM (9 years ago)
- Location:
- code/branches/cpp11_v3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v3
- Property svn:mergeinfo changed
/code/branches/cpp11_v2 merged: 10996-11008,11010
- Property svn:mergeinfo changed
-
code/branches/cpp11_v3/src/libraries/core/command/Shell.h
r11054 r11068 88 88 public: 89 89 /// Defines the type of a line of text in the Shell - some types depend on the output level, others are of internal use. 90 enum LineType90 enum class LineType 91 91 { 92 92 DebugOutput = debug_output, … … 133 133 LineList::const_iterator getEndIterator() const; 134 134 135 void addOutput(const std::string& text, LineType type = DebugOutput);136 void addLine(const std::string& line, LineType type = DebugOutput);135 void addOutput(const std::string& text, LineType type = LineType::DebugOutput); 136 void addLine(const std::string& line, LineType type = LineType::DebugOutput); 137 137 void clearOutput(); 138 138
Note: See TracChangeset
for help on using the changeset viewer.