xmlwrapp
Lightweight C++ XML parsing library
xmlwrapp.h
1 /*
2  * Copyright (C) 2001-2003 Peter J Jones (pjones@pmade.org)
3  * Copyright (C) 2013 Vaclav Slavik <vslavik@gmail.com>
4  * All Rights Reserved
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright
11  * notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in
14  * the documentation and/or other materials provided with the
15  * distribution.
16  * 3. Neither the name of the Author nor the names of its contributors
17  * may be used to endorse or promote products derived from this software
18  * without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS''
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
23  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR
24  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
27  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
28  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
30  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33 
34 #ifndef _xmlwrapp_xmlwrapp_h_
35 #define _xmlwrapp_xmlwrapp_h_
36 
37 #include "xmlwrapp/version.h"
38 #include "xmlwrapp/init.h"
39 #include "xmlwrapp/nodes_view.h"
40 #include "xmlwrapp/node.h"
41 #include "xmlwrapp/attributes.h"
42 #include "xmlwrapp/document.h"
43 #include "xmlwrapp/tree_parser.h"
44 #include "xmlwrapp/event_parser.h"
45 #include "xmlwrapp/errors.h"
46 #include "xmlwrapp/relaxng.h"
47 #include "xmlwrapp/schema.h"
48 #include "xmlwrapp/xpath.h"
49 
50 #endif // _xmlwrapp_xmlwrapp_h_
This file contains errors-handling classes: xml::exception and xml::error_handler and derived classes...
This file contains the definition of the xml::schema class.
This file contains the definition of the xml::init class.
This file contains the definition of the xml::node class.
This file contains the definition of the xml::relaxng class.
This file contains the definition of the xml::attributes class.
This files contains definitions for XPath-related classes.
This file contains the definition of the xml::event_parser class.
This file contains the definition of the xml::nodes_view and xml::const_nodes_view classes...
This file contains the definition of the xml::document class.
This file contains the XMLWRAPP_CHECK_VERSION macro.
This file contains the definition of the xml::tree_parser class.