OOStuBS - Technische Informatik II (TI-II)  2.4
cgastr.h
gehe zur Dokumentation dieser Datei
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\
2  * Technische Informatik II *
3  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
4  * *
5  * C G A _ S T R E A M *
6  * *
7 \* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
8 
9 #ifndef __cgastr_include__
10 #define __cgastr_include__
11 
12 #include "common/o_stream.h"
13 #include "machine/cgascr.h"
14 
31 class CGA_Stream : public O_Stream, public CGA_Screen {
32  public:
46  virtual void flush();
47 
56  virtual void setAttributes(int fgColor, int bgColor, bool blink);
57 
58 };
59 
60 #endif