blob: 03e8f74d891748bda1835357455034881b760371 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef VDR_TEXT2SKIN_PARSER_H
#define VDR_TEXT2SKIN_PARSER_H
#include <string>
class cxSkin;
class cText2SkinI18n;
class cText2SkinTheme;
cxSkin *xmlParse(const std::string &name, const std::string &fileName, cText2SkinI18n *I18n,
cText2SkinTheme *Theme);
#endif // VDR_TEXT2SKIN_PARSER_H
|