author | Lorenzo Bettini <bettini@dsi.unifi.it> | 2007年03月23日 18:13:11 +0000 |
---|---|---|
committer | Lorenzo Bettini <bettini@dsi.unifi.it> | 2007年03月23日 18:13:11 +0000 |
commit | 6fcee8f6e2f2212855b5b3e3ea5db76dc5d48cc3 (patch) | |
tree | 75e439f2d91fd9476d729dfe18c2765cd08f47eb /src/lib/parsestyles.h | |
parent | 5a0ebf841e2df9b60a10545d9abd5350bd06a346 (diff) | |
download | src-highlite-6fcee8f6e2f2212855b5b3e3ea5db76dc5d48cc3.tar.gz |
-rw-r--r-- | src/lib/parsestyles.h | 16 |
diff --git a/src/lib/parsestyles.h b/src/lib/parsestyles.h index d61f0a2..a753917 100644 --- a/src/lib/parsestyles.h +++ b/src/lib/parsestyles.h @@ -1,10 +1,10 @@ // // C++ Interface: parsestyles // -// Description: +// Description: declaration of function for parsing style files // // -// Author: Lorenzo Bettini <http://www.lorenzobettini.it>, (C) 2004 +// Author: Lorenzo Bettini <http://www.lorenzobettini.it>, (C) 2004-2007 // // Copyright: See COPYING file that comes with this distribution // @@ -13,9 +13,17 @@ #ifndef PARSESTYLES_H #define PARSESTYLES_H -#include "styles.h" +class GeneratorFactory; -Styles *parseStyles(const std::string &path, const std::string &name) ; +/// for style files +void parseStyles(const std::string &path, const std::string &name, + GeneratorFactory *generatorFactory, + std::string &bodyBgColor) ; void parseStyleError(const std::string &error) ; +/// for css style files +void parseCssStyles(const std::string &path, const std::string &name, + GeneratorFactory *generatorFactory, + std::string &bodyBgColor) ; + #endif |