00001 #ifndef _CONSOLE_TEXT_H 00002 #define _CONSOLE_TEXT_H 00003 00004 #include "thread.h" 00005 00013 class ConsoleText : public Thread 00014 { 00015 public: 00016 ConsoleText(); 00017 virtual ~ConsoleText(); 00018 00019 virtual int run(); 00020 00021 00022 virtual void stop(); 00023 }; 00024 00025 #endif
1.4.5