00001 #ifndef MYTHTHEMEBASE_H_ 00002 #define MYTHTHEMEBASE_H_ 00003 00004 #include "mythuiexp.h" 00005 00006 class MythThemeBasePrivate; 00007 00008 class MUI_PUBLIC MythThemeBase 00009 { 00010 public: 00011 MythThemeBase(); 00012 ~MythThemeBase(); 00013 00014 void Reload(void); 00015 00016 private: 00017 void Init(void); 00018 00019 MythThemeBasePrivate *d; 00020 }; 00021 00022 #endif 00023