blob: d7d7f6326d0fff50714d395add3ae354ffb66046 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* GraphLCD skin library
*
* parser.h - xml parsing
*
* This file is released under the GNU General Public License. Refer
* to the COPYING file distributed with this package.
*
* based on text2skin
*
*/
#ifndef _GLCDSKIN_PARSER_H_
#define _GLCDSKIN_PARSER_H_
#include <string>
namespace GLCD
{
class cSkin;
class cSkinConfig;
cSkin * XmlParse(cSkinConfig & Config, const std::string & name, const std::string & fileName);
} // end of namespace
#endif
|