From 6e95420b74d8e9da135c7ba6f2c80a1f7bdc6dba Mon Sep 17 00:00:00 2001 From: rsk1994 Date: Tue, 6 May 2014 18:02:40 +0530 Subject: QUOTE Element --- include/dom/dom.h | 1 + include/dom/html/html_quote_element.h | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) (limited to 'include') diff --git a/include/dom/dom.h b/include/dom/dom.h index 2dd63bb..d820fd0 100644 --- a/include/dom/dom.h +++ b/include/dom/dom.h @@ -64,6 +64,7 @@ #include #include #include +#include /* DOM Events header */ #include diff --git a/include/dom/html/html_quote_element.h b/include/dom/html/html_quote_element.h index 2e182d5..7d88eef 100644 --- a/include/dom/html/html_quote_element.h +++ b/include/dom/html/html_quote_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_quote_element_h_ +#define dom_html_quote_element_h_ +#include +#include +#include + +typedef struct dom_html_quote_element dom_html_quote_element; + +dom_exception dom_html_quote_element_get_cite( + dom_html_quote_element *element, dom_string **cite); + +dom_exception dom_html_quote_element_set_cite( + dom_html_quote_element *element, dom_string *cite); + +#endif -- cgit v1.2.3