Changeset 1334 for code/branches/console/src/core/Shell.h
- Timestamp:
- May 20, 2008, 1:48:40 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/console/src/core/Shell.h
r1326 r1334 83 83 std::list<std::string>::const_iterator getEndIterator() const; 84 84 85 void addLine(const std::string& line, unsignedint level);85 void addLine(const std::string& line, int level); 86 86 void clearLines(); 87 87 … … 90 90 inline unsigned int getScrollPosition() const 91 91 { return this->scrollPosition_; } 92 93 inline void addOutputLevel(bool bAddOutputLevel) 94 { this->bAddOutputLevel_ = bAddOutputLevel; } 92 95 93 96 private: … … 127 130 unsigned int historyPosition_; 128 131 unsigned int historyOffset_; 132 bool bAddOutputLevel_; 129 133 }; 130 134 }
Note: See TracChangeset
for help on using the changeset viewer.