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