summaryrefslogtreecommitdiff
path: root/src/core/element.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/element.h')
-rw-r--r--src/core/element.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/element.h b/src/core/element.h
index 2a79997..f51b9ae 100644
--- a/src/core/element.h
+++ b/src/core/element.h
@@ -8,10 +8,13 @@
#ifndef dom_internal_core_element_h_
#define dom_internal_core_element_h_
+#include <stdbool.h>
+
#include <dom/core/exceptions.h>
struct dom_document;
struct dom_element;
+struct dom_namednodemap;
struct dom_string;
dom_exception dom_element_create(struct dom_document *doc,
@@ -20,4 +23,9 @@ dom_exception dom_element_create(struct dom_document *doc,
void dom_element_destroy(struct dom_document *doc,
struct dom_element *element);
+dom_exception dom_element_get_attributes(struct dom_element *element,
+ struct dom_namednodemap **result);
+
+dom_exception dom_element_has_attributes(struct dom_element *element,
+ bool *result);
#endif