summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2007-07-14 23:45:20 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2007-07-14 23:45:20 +0000
commit9e6a46cb31c99b9ed326cf99942e42edb6be911b (patch)
tree6f7a1ecc5a3e743f8e49c6a4ad6cdf1d7d495ac6 /include
parent428146a7efdf7241b70d5a73aab8571aba71c25f (diff)
downloadlibdom-9e6a46cb31c99b9ed326cf99942e42edb6be911b.tar.gz
libdom-9e6a46cb31c99b9ed326cf99942e42edb6be911b.tar.bz2
Populate dom.h
Beginnings of xmlparser SAX handling. svn path=/trunk/dom/; revision=3413
Diffstat (limited to 'include')
-rw-r--r--include/dom/dom.h28
1 files changed, 24 insertions, 4 deletions
diff --git a/include/dom/dom.h b/include/dom/dom.h
index b28aa21..174ad6f 100644
--- a/include/dom/dom.h
+++ b/include/dom/dom.h
@@ -5,13 +5,33 @@
* Copyright 2007 John-Mark Bell <jmb@netsurf-browser.org>
*/
+/** \file
+ * This is the top-level header file for libdom. The intention of this is
+ * to allow client applications to simply include this file and get access
+ * to all the libdom API.
+ */
+
#ifndef dom_dom_h_
#define dom_dom_h_
-/** \todo populate this file */
+/* Base library headers */
+#include <dom/functypes.h>
-/* This is the top-level header file for libdom. The intention of this is
- * to allow client applications to simply include this file and get access
- * to all the libdom API. */
+/* DOM bootstrap headers */
+#include <dom/bootstrap/implregistry.h>
+
+/* DOM core headers */
+#include <dom/core/attr.h>
+#include <dom/core/characterdata.h>
+#include <dom/core/document.h>
+#include <dom/core/element.h>
+#include <dom/core/exceptions.h>
+#include <dom/core/implementation.h>
+#include <dom/core/impllist.h>
+#include <dom/core/namednodemap.h>
+#include <dom/core/node.h>
+#include <dom/core/nodelist.h>
+#include <dom/core/string.h>
+#include <dom/core/text.h>
#endif