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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Chapter 1. libxml++</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="libxml++ - An XML Parser for C++">
<link rel="up" href="index.html" title="libxml++ - An XML Parser for C++">
<link rel="prev" href="index.html" title="libxml++ - An XML Parser for C++">
<link rel="next" href="ch01s02.html" title="UTF-8 and Glib::ustring">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<div class="navheader">
<table width="100%" summary="Navigation header">
<tr><th colspan="3" align="center">Chapter 1. libxml++</th></tr>
<tr>
<td width="20%" align="left">
<a accesskey="p" href="index.html">Prev</a> </td>
<th width="60%" align="center"> </th>
<td width="20%" align="right"> <a accesskey="n" href="ch01s02.html">Next</a>
</td>
</tr>
</table>
<hr>
</div>
<div class="chapter">
<div class="titlepage"><div><div><h1 class="title">
<a name="chapter-introduction"></a>Chapter 1. libxml++</h1></div></div></div>
<div class="toc">
<p><b>Table of Contents</b></p>
<ul class="toc">
<li><span class="sect1"><a href="chapter-introduction.html#idp53605392">Installation</a></span></li>
<li><span class="sect1"><a href="ch01s02.html">UTF-8 and Glib::ustring</a></span></li>
<li><span class="sect1"><a href="ch01s03.html">Compilation and Linking</a></span></li>
</ul>
</div>
<p>
libxml++ is a C++ API for the popular <a class="ulink" href="http://www.xmlsoft.org" target="_top">libxml2</a> XML parser, written in C.
libxml2 is famous for its high performance and compliance to standard specifications, but its C API is quite difficult even for common tasks.
</p>
<p>
libxml++ presents a simple C++-like API that can achieve common tasks with less code.
Unlike some other C++ parsers, it does not try to avoid the advantages of standard C++ features
such as namespaces, STL containers or runtime type identification, and it does not try
to conform to standard API specifications meant for Java. Therefore libxml++ requires
a fairly modern C++ compiler such as g++ 4.9 or g++ 5. libxml++ 2.39.1 and later require
a C++11-compliant compiler.
</p>
<p>But libxml++ was created mainly to fill the need for an API-stable and ABI-stable C++ XML parser which could be used as a shared library dependency by C++ applications that are distributed widely in binary form. That means that installed applications will not break when new versions of libxml++ are installed on a user's computer. Gradual improvement of the libxml++ API is still possible via non-breaking API additions, and new independent versions of the ABI that can be installed in parallel with older versions. These are the general techniques and principles followed by the <a class="ulink" href="http://www.gnome.org" target="_top">GNOME</a> project, of which libxml++ is a part.</p>
<div class="sect1">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="idp53605392"></a>Installation</h2></div></div></div>
<p>libxml++ is packaged by major Linux and *BSD distributions and can be installed from source on Linux and Windows, using any modern compiler, such as g++, SUN Forte, or MSVC++.</p>
<p>For instance, to install libxml++ and its documentation on debian, use apt-get or synaptic like so:
</p>
<pre class="programlisting">
# apt-get install libxml++2.6-dev libxml++2.6-doc
</pre>
<p>
</p>
<p>To check that you have the libxml++ development packages installed, and that your environment is working properly, try <span class="command"><strong>pkg-config libxml++-2.6 --modversion</strong></span>.</p>
<p>Links for downloading and more documentation can be found at <a class="ulink" href="http://libxmlplusplus.sourceforge.net" target="_top">libxmlplusplus.sourceforge.net</a>.
libxml++ is licensed under the LGPL, which allows its use via dynamic linking in both open source and closed-source software. The underlying libxml2 library uses the even more generous MIT licence.</p>
</div>
</div>
<div class="navfooter">
<hr>
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left">
<a accesskey="p" href="index.html">Prev</a> </td>
<td width="20%" align="center"> </td>
<td width="40%" align="right"> <a accesskey="n" href="ch01s02.html">Next</a>
</td>
</tr>
<tr>
<td width="40%" align="left" valign="top">libxml++ - An XML Parser for C++ </td>
<td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td>
<td width="40%" align="right" valign="top"> UTF-8 and Glib::ustring</td>
</tr>
</table>
</div>
</body>
</html>
|