summaryrefslogtreecommitdiff
path: root/include/dom/html
diff options
context:
space:
mode:
authorrsk1994 <rsk1coder99@gmail.com>2014-05-31 09:59:54 +0530
committerRupinder Singh Khokhar <rsk1coder99@gmail.com>2014-06-11 04:27:11 +0530
commitcd055419fb5e2c046046d8e132105909c9f7c874 (patch)
tree7e59c064419c0359475638f4171eaf47e99ae75c /include/dom/html
parentf0a3c95cfc4a5595f930cd5dd14d6cbbf1f85312 (diff)
downloadlibdom-cd055419fb5e2c046046d8e132105909c9f7c874.tar.gz
libdom-cd055419fb5e2c046046d8e132105909c9f7c874.tar.bz2
Base Element
Diffstat (limited to 'include/dom/html')
-rw-r--r--include/dom/html/html_base_element.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/dom/html/html_base_element.h b/include/dom/html/html_base_element.h
index 5ff28ee..c8283f3 100644
--- a/include/dom/html/html_base_element.h
+++ b/include/dom/html/html_base_element.h
@@ -8,7 +8,23 @@
#ifndef dom_html_base_element_h_
#define dom_html_base_element_h_
+#include <stdbool.h>
+#include <dom/core/exceptions.h>
+#include <dom/core/string.h>
+
typedef struct dom_html_base_element dom_html_base_element;
+dom_exception dom_html_base_element_get_href(
+ dom_html_base_element *element, dom_string **href);
+
+dom_exception dom_html_base_element_set_href(
+ dom_html_base_element *element, dom_string *href);
+
+dom_exception dom_html_base_element_get_target(
+ dom_html_base_element *element, dom_string **target);
+
+dom_exception dom_html_base_element_set_target(
+ dom_html_base_element *element, dom_string *target);
+
#endif