libdom
Loading...
Searching...
No Matches
html_base_element.h
Go to the documentation of this file.
1/*
2 * This file is part of libdom.
3 * Licensed under the MIT License,
4 * http://www.opensource.org/licenses/mit-license.php
5 * Copyright 2009 Bo Yang <struggleyb.nku.com>
6 */
7
8#ifndef dom_html_base_element_h_
9#define dom_html_base_element_h_
10
11#include <stdbool.h>
12#include <dom/core/exceptions.h>
13#include <dom/core/string.h>
14
16
18 dom_html_base_element *element, dom_string **href);
19
21 dom_html_base_element *element, dom_string *href);
22
24 dom_html_base_element *element, dom_string **target);
25
27 dom_html_base_element *element, dom_string *target);
28
29#endif
30
dom_exception
Definition exceptions.h:24
dom_exception dom_html_base_element_get_href(dom_html_base_element *element, dom_string **href)
dom_exception dom_html_base_element_get_target(dom_html_base_element *element, dom_string **target)
dom_exception dom_html_base_element_set_href(dom_html_base_element *element, dom_string *href)
dom_exception dom_html_base_element_set_target(dom_html_base_element *element, dom_string *target)
Definition html_base_element.h:15
Definition string.h:19