summaryrefslogtreecommitdiff
path: root/include/hubbub/parser.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-03-07 12:39:12 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-03-07 12:39:12 +0000
commit625179d93958610fd854f4eba5b70a0aa3e6fecf (patch)
tree0f8c198e9e2030dc04ef86314f9dc12e764785ae /include/hubbub/parser.h
parenta912773ba580048b6164dfc112337a5f89e58b9b (diff)
downloadlibhubbub-625179d93958610fd854f4eba5b70a0aa3e6fecf.tar.gz
libhubbub-625179d93958610fd854f4eba5b70a0aa3e6fecf.tar.bz2
Beginnings of a tree builder.
Distinct lack of any real functionality beyond creation/destruction & option setting. svn path=/trunk/hubbub/; revision=3894
Diffstat (limited to 'include/hubbub/parser.h')
-rw-r--r--include/hubbub/parser.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/hubbub/parser.h b/include/hubbub/parser.h
index cdf8664..134f4b7 100644
--- a/include/hubbub/parser.h
+++ b/include/hubbub/parser.h
@@ -2,7 +2,7 @@
* This file is part of Hubbub.
* Licensed under the MIT License,
* http://www.opensource.org/licenses/mit-license.php
- * Copyright 2007 John-Mark Bell <jmb@netsurf-browser.org>
+ * Copyright 2007-8 John-Mark Bell <jmb@netsurf-browser.org>
*/
#ifndef hubbub_parser_h_
@@ -12,6 +12,7 @@
#include <hubbub/errors.h>
#include <hubbub/functypes.h>
+#include <hubbub/tree.h>
#include <hubbub/types.h>
typedef struct hubbub_parser hubbub_parser;
@@ -24,6 +25,7 @@ typedef enum hubbub_parser_opttype {
HUBBUB_PARSER_BUFFER_HANDLER,
HUBBUB_PARSER_ERROR_HANDLER,
HUBBUB_PARSER_CONTENT_MODEL,
+ HUBBUB_PARSER_TREE_HANDLER,
} hubbub_parser_opttype;
/**
@@ -48,6 +50,8 @@ typedef union hubbub_parser_optparams {
struct {
hubbub_content_model model;
} content_model;
+
+ hubbub_tree_handler tree_handler;
} hubbub_parser_optparams;
/* Create a hubbub parser */