blob: 85e2576bf4ffab31e7dede6bfcc497b76f5b61f0 (
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
|