From cd055419fb5e2c046046d8e132105909c9f7c874 Mon Sep 17 00:00:00 2001 From: rsk1994 Date: Sat, 31 May 2014 09:59:54 +0530 Subject: Base Element --- include/dom/dom.h | 1 + include/dom/html/html_base_element.h | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) (limited to 'include/dom') diff --git a/include/dom/dom.h b/include/dom/dom.h index fb39388..2c312f4 100644 --- a/include/dom/dom.h +++ b/include/dom/dom.h @@ -88,6 +88,7 @@ #include #include #include +#include /* DOM Events header */ #include 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 +#include +#include + 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 -- cgit v1.2.3