ddc
htmlutil.h
Go to the documentation of this file.
1 /*
2 www.sourceforge.net/projects/tinyxpath
3 Copyright (c) 2002 Yves Berquin (yvesb@users.sourceforge.net)
4 
5 This software is provided 'as-is', without any express or implied
6 warranty. In no event will the authors be held liable for any
7 damages arising from the use of this software.
8 
9 Permission is granted to anyone to use this software for any
10 purpose, including commercial applications, and to alter it and
11 redistribute it freely, subject to the following restrictions:
12 
13 1. The origin of this software must not be misrepresented; you must
14 not claim that you wrote the original software. If you use this
15 software in a product, an acknowledgment in the product documentation
16 would be appreciated but is not required.
17 
18 2. Altered source versions must be plainly marked as such, and
19 must not be misrepresented as being the original software.
20 
21 3. This notice may not be removed or altered from any source
22 distribution.
23 */
24 
30 #ifndef __HTMLUTIL_H
31 #define __HTMLUTIL_H
32 
33 #include "tinyxml.h"
34 
35 extern void v_out_html (FILE * Fp_out, const TiXmlNode * XNp_source, unsigned u_level);
36 extern void v_levelize (int i_level, FILE * Fp_out = stdout, bool o_html = false);
37 
38 #endif
39 
40 /*--- emacs style variables ---
41  * Local Variables:
42  * mode: C++
43  * c-file-style: "ellemtel"
44  * c-basic-offset: 4
45  * tab-width: 8
46  * indent-tabs-mode: nil
47  * End:
48  */
void v_out_html(FILE *Fp_out, const TiXmlNode *XNp_source, unsigned u_level)
Definition: htmlutil.cpp:47
void v_levelize(int i_level, FILE *Fp_out=stdout, bool o_html=false)
Generate some indentation on the HTML or file output.
Definition: htmlutil.cpp:35
Definition: tinyxml.h:363