![]() |
Mixxx
|
00001 #ifndef SKINPARSER_H 00002 #define SKINPARSER_H 00003 00004 #include <QString> 00005 #include <QWidget> 00006 00007 class SkinParser { 00008 public: 00009 SkinParser() { } 00010 virtual ~SkinParser() { } 00011 00012 virtual bool canParse(QString skinPath) = 0; 00013 virtual QWidget* parseSkin(QString skinPath, QWidget* pParent) = 0; 00014 }; 00015 00016 #endif /* SKINPARSER_H */