00001 #ifndef HW_RESOURCE_MGR_H 00002 #define HW_RESOURCE_MGR_H 00003 00004 #include <map> 00005 #include <string> 00006 00007 using namespace std; 00008 00009 class wsRequest; 00010 00011 class hwResourceMgr 00012 { 00013 public: 00014 00015 static hwResourceMgr* getInstance(); 00016 00017 void process(wsRequest* request); 00018 00019 private: 00020 00021 hwResourceMgr(); 00022 00023 map<string,char*> myDataMap; 00024 00025 map<string,int> mySizeMap; 00026 00027 static hwResourceMgr* myInstance; 00028 }; 00029 00030 #endif