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