blob: 5f37118ac1b5b3965da95a10416111f9b55cbc10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* $Id: parser.h,v 1.1 2004/12/19 22:03:28 lordjaxom Exp $
*/
#ifndef VDR_TEXT2SKIN_PARSER_H
#define VDR_TEXT2SKIN_PARSER_H
#include <string>
class cxSkin;
cxSkin *xmlParse(const std::string &name, const std::string &fileName);
#endif // VDR_TEXT2SKIN_PARSER_H
|