00001 #ifndef HWTEXT_H
00002 #define HWTEXT_H
00003
00004 #include <hwWidget.h>
00005
00006 class hwText : public hwWidget
00007 {
00008 public:
00009
00010 hwText();
00011
00012 ~hwText();
00013
00014 string draw();
00015
00016 private:
00017
00018 };
00019
00020 #endif
00021