- Timestamp:
- Dec 31, 2015, 12:43:34 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/libraries/core/command/Shell.h
r10992 r11007 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.