summaryrefslogtreecommitdiff
path: root/include/dom/html
diff options
context:
space:
mode:
authorrsk1994 <rsk1coder99@gmail.com>2014-05-06 18:02:40 +0530
committerRupinder Singh Khokhar <rsk1coder99@gmail.com>2014-06-11 04:27:04 +0530
commitc26794c84b61cb3364207aff1e81598048af2a13 (patch)
treeb1e9e828e9840f184afc240118ddb974a3ec3ec5 /include/dom/html
parent6ba15f74fdb3009fce39dbc2ef23b1e238b95e9b (diff)
downloadlibdom-c26794c84b61cb3364207aff1e81598048af2a13.tar.gz
libdom-c26794c84b61cb3364207aff1e81598048af2a13.tar.bz2
QUOTE <q> Element
Diffstat (limited to 'include/dom/html')
-rw-r--r--include/dom/html/html_quote_element.h16
1 files changed, 16 insertions, 0 deletions
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 <struggleyb.nku@gmail.com>
+ * Copyright 2014 Rupinder Singh Khokhar <rsk1coder99@gmail.com>
*/
+#ifndef dom_html_quote_element_h_
+#define dom_html_quote_element_h_
+#include <stdbool.h>
+#include <dom/core/exceptions.h>
+#include <dom/core/string.h>
+
+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