1 /*
2 * stylefileparser.h
3 *
4 * Created on: Dec 9, 2008
5 * Author: Lorenzo Bettini <http://www.lorenzobettini.it>, (C) 2008
6 * Copyright: See COPYING file that comes with this distribution
7 */
8
9 #ifndef STYLEFILEPARSER_H_
10 #define STYLEFILEPARSER_H_
11
12 #include <string>
13
14 #include "formatterfactory.h"
15
17
22 public:
35
48
59 static void parseStyleFile(
const std::string &path,
const std::string &name,
61
74 };
75
76 }
77
78 #endif /* STYLEFILEPARSER_H_ */
C++ class: doctemplate.h.
Definition: bufferedoutput.cpp:13
static void parseCssStyleFile(const std::string &name, FormatterFactory *formatterFactory, std::string &bodyBgColor)
Parses the specified css style file, and creates the corresponding formatters, using the passed Forma...
Definition: stylefileparser.cpp:24
A utility class with static methods to parse style files.
Definition: stylefileparser.h:21
static void parseStyleFile(const std::string &name, FormatterFactory *formatterFactory, std::string &bodyBgColor)
Parses the specified style file, and creates the corresponding formatters, using the passed Formatter...
Definition: stylefileparser.cpp:19