00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef TEDDY__PHYSICAL_COMPONENTS__CONSOLE_STREAM_BUFFER__H
00026 #define TEDDY__PHYSICAL_COMPONENTS__CONSOLE_STREAM_BUFFER__H
00027
00028
00029 #if 0
00030 #include "Teddy/PhysicalComponents/Console.h"
00031 #if defined(_MSC_VER)
00032 # include <ostream>
00033 #else // gcc
00034
00035 #endif
00036 using namespace std;
00037
00038
00039 namespace Teddy {
00040 namespace PhysicalComponents {
00041
00042
00047 class ConsoleStreamBuffer : public streambuf {
00048 public:
00049 ConsoleStreamBuffer(){
00050 this->_con = NULL;
00051 }
00052
00053 void setCon( Console *con ){
00054 this->_con = con;
00055 }
00056 virtual int overflow( int c );
00057
00058 private:
00059 Console *_con;
00060 };
00061
00062
00063 };
00064 };
00065
00066
00067 #endif
00068
00069 #endif // TEDDY__PHYSICAL_COMPONENTS__CONSOLE_STREAM_BUFFER__H
00070