summaryrefslogtreecommitdiff
path: root/src/cssparser.hh
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-03-15 22:18:20 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-03-15 22:18:20 +0100
commit5f5e05347d4898766d1c06c41c6c56e23b71bcd7 (patch)
tree64a97621dcdfc4c0b0383878b555d37fd200f456 /src/cssparser.hh
parentce04e3431c9d6658689b6cac94ac59f9dba60a78 (diff)
move CssPropertyInfo definition to cssparser.cc
Diffstat (limited to 'src/cssparser.hh')
-rw-r--r--src/cssparser.hh9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/cssparser.hh b/src/cssparser.hh
index 8e29d303..e28516a6 100644
--- a/src/cssparser.hh
+++ b/src/cssparser.hh
@@ -3,14 +3,6 @@
#include "css.hh"
-typedef struct {
- const char *symbol;
- const CssValueType type[3];
- const char *const *enum_symbols;
-} CssPropertyInfo;
-
-extern const CssPropertyInfo Css_property_info[CSS_PROPERTY_LAST];
-
class CssParser {
private:
typedef enum {
@@ -49,6 +41,7 @@ class CssParser {
static CssPropertyList *parseDeclarationBlock(const char *buf, int buflen);
static void parse(CssContext *context, const char *buf, int buflen,
CssOrigin origin);
+ static const char *propertyNameString(CssPropertyName name);
};
#endif