blob: c8b8eb74b021d35339ce621cb90ed6f88c18cc6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// -*- c++ -*-
#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
|