From 625179d93958610fd854f4eba5b70a0aa3e6fecf Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Fri, 7 Mar 2008 12:39:12 +0000 Subject: Beginnings of a tree builder. Distinct lack of any real functionality beyond creation/destruction & option setting. svn path=/trunk/hubbub/; revision=3894 --- include/hubbub/parser.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'include/hubbub/parser.h') 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 + * Copyright 2007-8 John-Mark Bell */ #ifndef hubbub_parser_h_ @@ -12,6 +12,7 @@ #include #include +#include #include 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 */ -- cgit v1.2.3