From 3c9d9494222d81c207cc09a7686cca50db109c0b Mon Sep 17 00:00:00 2001 From: rsk1994 Date: Sun, 18 May 2014 09:24:36 +0530 Subject: TableCaption Element --- include/dom/dom.h | 1 + include/dom/html/html_tablecaption_element.h | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) (limited to 'include') diff --git a/include/dom/dom.h b/include/dom/dom.h index b23ede0..b19a298 100644 --- a/include/dom/dom.h +++ b/include/dom/dom.h @@ -82,6 +82,7 @@ #include #include #include +#include /* DOM Events header */ #include diff --git a/include/dom/html/html_tablecaption_element.h b/include/dom/html/html_tablecaption_element.h index 2e182d5..412efae 100644 --- a/include/dom/html/html_tablecaption_element.h +++ b/include/dom/html/html_tablecaption_element.h @@ -3,5 +3,21 @@ * Licensed under the MIT License, * http://www.opensource.org/licenses/mit-license.php * Copyright 2009 Bo Yang + * Copyright 2014 Rupinder Singh Khokhar */ +#ifndef dom_html_table_caption_element_h_ +#define dom_html_table_caption_element_h_ +#include +#include +#include + +typedef struct dom_html_table_caption_element dom_html_table_caption_element; + +dom_exception dom_html_table_caption_element_get_align( + dom_html_table_caption_element *element, dom_string **align); + +dom_exception dom_html_table_caption_element_set_align( + dom_html_table_caption_element *element, dom_string *align); + +#endif -- cgit v1.2.3