diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2008-12-04 18:04:14 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2008-12-04 18:04:14 +0100 |
commit | 5b731bd8a0147e6ff9f2a69339312a9a1e08ae2e (patch) | |
tree | 1a3a7df143137b599b83ed36cf45769f1cc2f7fe /src/styleengine.hh | |
parent | 8065034cc6d7dec172b09714dc9383c425cd4448 (diff) |
hook up <style>...</style> parsing
Diffstat (limited to 'src/styleengine.hh')
-rw-r--r-- | src/styleengine.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/styleengine.hh b/src/styleengine.hh index b37aa0d7..a9440aa7 100644 --- a/src/styleengine.hh +++ b/src/styleengine.hh @@ -4,6 +4,7 @@ #include "dw/core.hh" #include "doctree.hh" #include "css.hh" +#include "cssparser.hh" class StyleEngine : public Doctree { private: @@ -38,6 +39,7 @@ class StyleEngine : public Doctree { return NULL; }; + void parse (const char *buf, int buflen, int order_count, CssOrigin origin); void startElement (int tag); void setId (const char *id); void setClass (const char *klass); |