summaryrefslogtreecommitdiff
path: root/include/dom/html/html_div_element.h
diff options
context:
space:
mode:
authorrsk1994 <rsk1coder99@gmail.com>2014-05-02 13:12:37 +0530
committerRupinder Singh Khokhar <rsk1coder99@gmail.com>2014-06-11 04:27:03 +0530
commit2b87ff19433e1ced046a3967887416c85561606c (patch)
tree2ae907eb7d4e8533af2c926829cb43d7b49ba58c /include/dom/html/html_div_element.h
parent7d2a3a352e8deeef4cbd1da03b8eb6ff113054b6 (diff)
downloadlibdom-2b87ff19433e1ced046a3967887416c85561606c.tar.gz
libdom-2b87ff19433e1ced046a3967887416c85561606c.tar.bz2
Div Element
Diffstat (limited to 'include/dom/html/html_div_element.h')
-rw-r--r--include/dom/html/html_div_element.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/dom/html/html_div_element.h b/include/dom/html/html_div_element.h
index 2e182d5..051a6d5 100644
--- a/include/dom/html/html_div_element.h
+++ b/include/dom/html/html_div_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_div_element_h_
+#define dom_html_div_element_h_
+#include <stdbool.h>
+#include <dom/core/exceptions.h>
+#include <dom/core/string.h>
+
+typedef struct dom_html_div_element dom_html_div_element;
+
+dom_exception dom_html_div_element_get_align(
+ dom_html_div_element *element, dom_string **align);
+
+dom_exception dom_html_div_element_set_align(
+ dom_html_div_element *element, dom_string *align);
+
+#endif