blob: 9a0bad01dc6efd56b8e4e2383fffff7b2ea2483a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/*
*/
/*! \page tagreader-example.html
\ingroup xml-examples
\title A tiny SAX2 parser
This example presents a small \link xml.html#sax2 SAX2 \endlink
reader that outputs the names of all elements in an
XML document on the command line. The element names are
indented corresponding to their nesting
This example is thoroughly explained in a
\link xml-sax-walkthrough.html walkthrough. \endlink
<hr>
Header file:
\include xml/tagreader/structureparser.h
<hr>
Implementation:
\include xml/tagreader/structureparser.cpp
<hr>
Main:
\include xml/tagreader/tagreader.cpp
*/
|