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