mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 11:59:58 -05:00
Initial community commit
This commit is contained in:
18
Src/Wasabi/api/skin/SkinVersion.h
Normal file
18
Src/Wasabi/api/skin/SkinVersion.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef NULLSOFT_WASABI_SKINVERSION_H
|
||||
#define NULLSOFT_WASABI_SKINVERSION_H
|
||||
|
||||
#include "../xml/ifc_xmlreadercallbacki.h"
|
||||
#include <bfc/string/StringW.h>
|
||||
|
||||
class ifc_xmlreaderparams;
|
||||
class SkinVersionXmlReader : public ifc_xmlreadercallbackI
|
||||
{
|
||||
public:
|
||||
SkinVersionXmlReader(const wchar_t *skinname);
|
||||
void xmlReaderOnStartElementCallback(const wchar_t *xmlpath, const wchar_t *xmltag, ifc_xmlreaderparams *params);
|
||||
const wchar_t *getWalVersion();
|
||||
private:
|
||||
StringW walversion;
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user