diff options
Diffstat (limited to 'glcdskin/parser.h')
-rw-r--r-- | glcdskin/parser.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/glcdskin/parser.h b/glcdskin/parser.h new file mode 100644 index 0000000..d7d7f63 --- /dev/null +++ b/glcdskin/parser.h @@ -0,0 +1,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 |