00001 #ifndef HWCOMBO_H 00002 #define HWCOMBO_H 00003 00004 #include <hwWidget.h> 00005 #include <vector> 00006 00007 class hwCombo : public hwWidget 00008 { 00009 public: 00010 00011 hwCombo(); 00012 00013 ~hwCombo(); 00014 00015 string draw(); 00016 00017 void add(const string& item) 00018 { 00019 myItems.push_back(item); 00020 } 00021 00022 void clear() 00023 { 00024 myItems.clear(); 00025 } 00026 00027 private: 00028 00029 vector<string> myItems; 00030 }; 00031 00032 #endif 00033