summaryrefslogtreecommitdiff
path: root/src/html/html_options_collection.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2010-08-30 13:06:19 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2010-08-30 13:06:19 +0000
commit7b12b43398bd2beaebe9444ca76e5150b8410691 (patch)
tree4ce25caee01c0a2a2ebbe052999b5eb8a2fbe2e3 /src/html/html_options_collection.h
parente1c80e0df81cec4ccf6a9dd378942d091a0f15dd (diff)
downloadlibdom-7b12b43398bd2beaebe9444ca76e5150b8410691.tar.gz
libdom-7b12b43398bd2beaebe9444ca76e5150b8410691.tar.bz2
Merge branches/struggleyb/libdom-html to trunk.
A few additional fixes to reduce the number of regressions to single figures. svn path=/trunk/dom/; revision=10724
Diffstat (limited to 'src/html/html_options_collection.h')
-rw-r--r--src/html/html_options_collection.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/html/html_options_collection.h b/src/html/html_options_collection.h
new file mode 100644
index 0000000..e82cc5c
--- /dev/null
+++ b/src/html/html_options_collection.h
@@ -0,0 +1,42 @@
+/*
+ * This file is part of libdom.
+ * Licensed under the MIT License,
+ * http://www.opensource.org/licenses/mit-license.php
+ * Copyright 2009 Bo Yang <struggleyb.nku@gmail.com>
+ */
+
+#ifndef dom_internal_html_options_collection_h_
+#define dom_internal_html_options_collection_h_
+
+#include <dom/html/html_options_collection.h>
+
+#include "html/html_collection.h"
+
+struct dom_node_internal;
+
+/**
+ * The html_options_collection structure
+ */
+struct dom_html_options_collection {
+ struct dom_html_collection base;
+ /**< The base class */
+};
+
+dom_exception _dom_html_options_collection_create(struct dom_document *doc,
+ struct dom_node_internal *root,
+ dom_callback_is_in_collection ic,
+ struct dom_html_options_collection **col);
+
+dom_exception _dom_html_options_collection_initialise(struct dom_document *doc,
+ struct dom_html_options_collection *col,
+ struct dom_node_internal *root,
+ dom_callback_is_in_collection ic);
+
+void _dom_html_options_collection_finalise(
+ struct dom_html_options_collection *col);
+
+void _dom_html_options_collection_destroy(
+ struct dom_html_options_collection *col);
+
+#endif
+