summaryrefslogtreecommitdiff
path: root/src/core/node.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2007-07-28 14:34:59 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2007-07-28 14:34:59 +0000
commitf690243cd9e852396aecc2c4d054e1e2478aff09 (patch)
treed3fe522992dec910758c2b86d0d02ec9c2d005a9 /src/core/node.h
parent5b61881600d30941e4a4b53160416f80b11bf7b3 (diff)
downloadlibdom-f690243cd9e852396aecc2c4d054e1e2478aff09.tar.gz
libdom-f690243cd9e852396aecc2c4d054e1e2478aff09.tar.bz2
Sort out somewhat messy object construction.
We now have explicit types for all classes (rather than using the parent class for those which inherit but add no extra data content). svn path=/trunk/dom/; revision=3465
Diffstat (limited to 'src/core/node.h')
-rw-r--r--src/core/node.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/node.h b/src/core/node.h
index 6a72efd..168d2ec 100644
--- a/src/core/node.h
+++ b/src/core/node.h
@@ -52,10 +52,6 @@ struct dom_node {
uint32_t refcnt; /**< Reference count */
};
-dom_exception dom_node_create(struct dom_document *doc, dom_node_type type,
- struct dom_string *name, struct dom_string *value,
- struct dom_node **result);
-
dom_exception dom_node_initialise(struct dom_node *node,
struct dom_document *doc, dom_node_type type,
struct dom_string *name, struct dom_string *value);