• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

MSVC_Net2010/H28-Oct-2015-4,6034,501

build/H28-Oct-2015-23,83419,564

docs/H03-May-2022-23,89823,004

examples/H03-May-2022-5,5623,983

libxml++/H03-May-2022-11,0246,430

tests/H03-May-2022-1,6491,397

AUTHORSH A D29-Sep-2013288 1811

COPYINGH A D29-Sep-201325.8 KiB505418

ChangeLogH A D28-Oct-201592.9 KiB2,9081,868

INSTALLH A D28-Oct-201515.4 KiB371289

Makefile.amH A D27-Oct-2015773 2917

Makefile.inH A D03-May-202233.6 KiB1,013905

NEWSH A D28-Oct-201519.5 KiB634482

READMEH A D28-Oct-2015781 2216

aclocal.m4H A D28-Oct-201570.1 KiB2,0091,809

autogen.shH A D29-Sep-2013256 85

config.h.inH A D28-Oct-20152.3 KiB8758

configureH A D28-Oct-2015589 KiB19,49916,482

configure.acH A D28-Oct-20152.6 KiB7759

libxml++-2.6.pc.inH A D03-May-2022636 2017

libxml++config.h.inH A D28-Oct-20151,013 4029

README

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