Changeset 1322 for code/branches/console/src/core/OutputBuffer.h
- Timestamp:
- May 19, 2008, 2:33:09 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/console/src/core/OutputBuffer.h
r1313 r1322 32 32 #include <list> 33 33 #include <sstream> 34 #include <iostream> 34 35 35 36 #include "CorePrereqs.h" … … 57 58 return *this; 58 59 } 60 61 OutputBuffer& operator<<(std::ostream& (*manipulator)(std::ostream&)); 62 OutputBuffer& operator<<(std::ios& (*manipulator)(std::ios&)); 63 OutputBuffer& operator<<(std::ios_base& (*manipulator)(std::ios_base&)); 59 64 60 65 template <class T> … … 88 93 void unregisterListener(OutputBufferListener* listener); 89 94 90 inline operator std::stringstream&()91 {92 return this->stream_;93 }94 95 95 private: 96 96 void callListeners();
Note: See TracChangeset
for help on using the changeset viewer.