1 //
2 // C++ Interface: parsestyles
3 //
4 // Description: declaration of function for parsing style files
5 //
6 //
7 // Author: Lorenzo Bettini <http://www.lorenzobettini.it>, (C) 2004-2007
8 //
9 // Copyright: See COPYING file that comes with this distribution
10 //
11 //
12
13 #ifndef PARSESTYLES_H
14 #define PARSESTYLES_H
15
16 #include <string>
17
18 #include "formatterfactory.h"
19
21
31 extern void parseStyles(
const std::string &path,
const std::string &name,
32 FormatterFactory *formatterFactory, std::string &bodyBgColor);
33
43 extern void parseStyles(
const std::string &name, FormatterFactory *formatterFactory,
44 std::string &bodyBgColor);
45
46 extern void parseStyleError(const std::string &error);
47
49 extern void parseCssStyles(
const std::string &path,
const std::string &name,
50 FormatterFactory *formatterFactory, std::string &bodyBgColor);
51
52 }
53
54 #endif
void parseCssStyles(const std::string &path, const std::string &name, FormatterFactory *formatterFactory, std::string &bodyBgColor)
for css style files
Definition: stylecssparser.cc:1955
C++ class: doctemplate.h.
Definition: bufferedoutput.cpp:13
void parseStyles(const std::string &path, const std::string &name, FormatterFactory *formatterFactory, std::string &bodyBgColor)
Parses the specified style file, and creates the corresponding formatters, using the passed Formatter...
Definition: styleparser.cc:2002