OOStuBS - Technische Informatik II (TI-II)  2.4
log.h
gehe zur Dokumentation dieser Datei
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\
2  * Technische Informatik II *
3  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
4  * *
5  * L O G *
6  * *
7 \* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
8 
9 #ifndef __log_include__
10 #define __log_include__
11 
12 #include "common/o_stream.h"
13 #include "machine/serial.h"
14 
20 class Log : public O_Stream, public Serial {
21  public:
28  virtual void flush();
29 
33  virtual void setAttributes(int fgColor, int bgColor, bool blink);
34 
35 };
36 
37 #endif