Imported Upstream version 2.35.1
[platform/upstream/libxml++.git] / README
1 libxml++
2 -------------
3
4 This library provides a C++ interface to XML files.  It uses libxml 2 to access
5 the XML files, and in order to configure libxml++ you must have both libxml and
6 pkg-config installed.
7
8 To get the latest version of libxml++, see
9 http://libxmlplusplus.sourceforge.net/
10 To contact the developers, send e-mail to the mailing list. We welcome patches,
11 but it helps to discuss them first.
12
13 Read the file 'INSTALL' for instructions to compile and install the library.
14
15 See the examples directory for example code.
16
17 Use pkg-config to discover the necessary include and linker arguments. For
18 instance,
19   pkg-config libxml++-2.6 --cflags --libs
20 Ideally you would use PKG_CHECK_MODULES in your configure.ac file.
21 See http://www.openismus.com for generic help with that.