00001 #ifndef HWTHEME_H_ 00002 #define HWTHEME_H_ 00003 00004 #include <string> 00005 00006 using namespace std; 00007 00008 class hwTheme 00009 { 00010 public: 00011 00012 hwTheme(const string& filename); 00013 00014 virtual ~hwTheme(); 00015 00016 string getStyle(); 00017 00018 private: 00019 00020 string myFilename; 00021 }; 00022 00023 #endif 00024