[-]
[+]
|
Changed |
lfcxml.spec
|
|
[-]
[+]
|
Deleted |
lfcxml-1.0.25.tar.bz2/README~
^
|
@@ -1,70 +0,0 @@
-
-
- lfcxml - Lemke Foundation classes XML extension
- -----------------------------------------------
- C++ XML library
-
- Version 1.0.24
-
- (C)opyright 2006,2007,2008,2009,2010 Bjoern Lemke
-
- This software comes under the GNU general public license
-
-
-Requirements
-------------
-To build the XML library, you need the following library packages available as opensource from www.lemke-it.com:
-
- lfc-1.1.34.tar.gz
-
-Supported platforms
--------------------
-XML library has been successfully tested on
-
- Mac OS X
- Solaris
- FreeBSD
- HP-UX
-
-Installation
-------------
-Run the configure script with the following options
-
- ./configure --prefix=<prefix-dir>
-
-where base-include-dir and base-lib-dir are the location directories the
-base headers and library have been installed.
-
-For 64bit compile, you have to set the CFLAGS variable
-
- $ ./configure --prefix=<prefix-dir> CFLAGS=-m64 LDFLAGS=-m64
-
-where -m64 is the valid compile option vor GNU gcc.
-
-For Forte C compiles ( Sun Solaris ), you should specify
-
- $ ./configure --prefix=<prefix-dir> CFLAGS=-xarch=v9 LDFLAGS=-xarch=v9 SHLIBOPT=-G
-
-Please note : For 64bit compile, you also need appropriate 64bit compiled versions of libBase, libXML and the readline library
-
-
-Run make
-
- ./make
-
-This builds the XML library as a liblfcxml.a.
-You can install the library with the required header files
-with the install command
-
- ./make install
-
-Testing
--------
-To make some basic tests, you can use the sample in the sample folder, or build them with
-
- ./make samples
-
-Documentation
--------------
-Since this is a utility library, no explicit user documentation is provided with this package.
-
|
[-]
[+]
|
Deleted |
lfcxml-1.0.25.tar.bz2/samples/.#xmltest.cc
^
|
-(symlink to lemke@dude.local.187)
|
[-]
[+]
|
Changed |
lfcxml-1.0.26.tar.bz2/README
^
|
@@ -4,7 +4,7 @@
-----------------------------------------------
C++ XML library
- Version 1.0.25
+ Version 1.0.26
(C)opyright 2006,2007,2008,2009,2010 Bjoern Lemke
@@ -15,7 +15,7 @@
------------
To build the XML library, you need the following library packages available as opensource from www.lemke-it.com:
- lfc-1.1.34.tar.gz
+ lfc-1.1.41.tar.gz
Supported platforms
-------------------
|
[-]
[+]
|
Changed |
lfcxml-1.0.26.tar.bz2/src/Version.cc
^
|
@@ -32,7 +32,7 @@
// Status: IMPLEMENTED
///////////////////////////////////////////////////////////////////////////////
-char __lfcxmlVersionString[] = "1.0.25";
+char __lfcxmlVersionString[] = "1.0.26";
|
[-]
[+]
|
Changed |
lfcxml-1.0.26.tar.bz2/src/XMLInStream.cc
^
|
@@ -39,6 +39,7 @@
XMLInStream::XMLInStream()
{
}
+
XMLInStream::~XMLInStream()
{
}
|
[-]
[+]
|
Changed |
lfcxml-1.0.26.tar.bz2/src/XMLInStream.h
^
|
@@ -47,7 +47,7 @@
public:
XMLInStream();
- ~XMLInStream();
+ virtual ~XMLInStream();
virtual void putFirst(Element *pParent, const Chain& name, const ListT<Attribute>& attrList, ListT<char*> dataList ) = 0;
virtual void putNext(Element *pParent, const Chain& name, const ListT<Attribute>& attrList, ListT<char*> dataList) = 0;
|
[-]
[+]
|
Changed |
lfcxml-1.0.26.tar.bz2/src/XMLOutStream.cc
^
|
@@ -39,6 +39,7 @@
XMLOutStream::XMLOutStream()
{
}
+
XMLOutStream::~XMLOutStream()
{
}
|
[-]
[+]
|
Changed |
lfcxml-1.0.26.tar.bz2/src/XMLOutStream.h
^
|
@@ -46,7 +46,7 @@
public:
XMLOutStream();
- ~XMLOutStream();
+ virtual ~XMLOutStream();
virtual Element* getFirst() = 0;
virtual Element* getNext() = 0;
|