libdom
Loading...
Searching...
No Matches
html_meta_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_meta_element_h_
9#define dom_html_meta_element_h_
10
11#include <dom/core/string.h>
12
14
16 dom_string **content);
17
19 dom_string *content);
20
22 dom_string **http_equiv);
23
25 dom_string *http_equiv);
26
28 dom_string **name);
29
31 dom_string *name);
32
34 dom_string **scheme);
35
37 dom_string *scheme);
38
39#endif
40
dom_exception
Definition exceptions.h:24
dom_exception dom_html_meta_element_get_scheme(dom_html_meta_element *ele, dom_string **scheme)
dom_exception dom_html_meta_element_get_content(dom_html_meta_element *ele, dom_string **content)
dom_exception dom_html_meta_element_set_name(dom_html_meta_element *ele, dom_string *name)
dom_exception dom_html_meta_element_get_name(dom_html_meta_element *ele, dom_string **name)
dom_exception dom_html_meta_element_set_content(dom_html_meta_element *ele, dom_string *content)
dom_exception dom_html_meta_element_get_http_equiv(dom_html_meta_element *ele, dom_string **http_equiv)
dom_exception dom_html_meta_element_set_scheme(dom_html_meta_element *ele, dom_string *scheme)
dom_exception dom_html_meta_element_set_http_equiv(dom_html_meta_element *ele, dom_string *http_equiv)
Definition html_meta_element.h:15
Definition string.h:19