summaryrefslogtreecommitdiff
path: root/include/dom/html/html_head_element.h
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2012-07-07 18:25:30 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2012-07-07 18:25:30 +0100
commit176583ebf1b7c4a503c1ecc88123c15d3414d46b (patch)
treeb00b2061b386fc929b08150870f208fee2bebacb /include/dom/html/html_head_element.h
parenta72ba64abdd90ad1fd9476aa354046927a75f7a7 (diff)
parente03978c667b83627073498ca34c61cf267934c41 (diff)
downloadlibdom-176583ebf1b7c4a503c1ecc88123c15d3414d46b.tar.gz
libdom-176583ebf1b7c4a503c1ecc88123c15d3414d46b.tar.bz2
Merge element work, adds 5 element types and enables 27 tests.
Diffstat (limited to 'include/dom/html/html_head_element.h')
-rw-r--r--include/dom/html/html_head_element.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/dom/html/html_head_element.h b/include/dom/html/html_head_element.h
index e00fc19..cb10358 100644
--- a/include/dom/html/html_head_element.h
+++ b/include/dom/html/html_head_element.h
@@ -8,7 +8,14 @@
#ifndef dom_html_head_element_h_
#define dom_html_head_element_h_
+#include <dom/html/html_element.h>
+
typedef struct dom_html_head_element dom_html_head_element;
+dom_exception dom_html_head_element_get_profile(
+ struct dom_html_head_element *element, dom_string **profile);
+dom_exception dom_html_head_element_set_profile(
+ struct dom_html_head_element *element, dom_string *profile);
+
#endif