diff options
author | John Wiegley <johnw@newartisans.com> | 2009-01-24 04:49:58 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-01-24 04:49:58 -0400 |
commit | a69649fb7f5ca7e20713ec260c5f989ae82d446f (patch) | |
tree | 41929e6fc4d4d20ffcf0bbbfa681dbe3e3624e21 /src/system.hh | |
parent | dff450ab3dbcb0819029c0bd5aee8dd78703a864 (diff) | |
download | fork-ledger-a69649fb7f5ca7e20713ec260c5f989ae82d446f.tar.gz fork-ledger-a69649fb7f5ca7e20713ec260c5f989ae82d446f.tar.bz2 fork-ledger-a69649fb7f5ca7e20713ec260c5f989ae82d446f.zip |
Switched over to using irrxml for parsing XML, rather than expat.
Diffstat (limited to 'src/system.hh')
-rw-r--r-- | src/system.hh | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/system.hh b/src/system.hh index 0dc4d33d..b44678d6 100644 --- a/src/system.hh +++ b/src/system.hh @@ -122,13 +122,8 @@ typedef std::ostream::pos_type ostream_pos_type; #include <gmp.h> -extern "C" { -#if defined(HAVE_EXPAT) -#include <expat.h> // expat XML parser -#elif defined(HAVE_XMLPARSE) -#include <xmlparse.h> // expat XML parser -#endif -} +#include "irrXML.h" // XML parser +#include "CXMLReaderImpl.h" #if defined(HAVE_LIBOFX) #include <libofx.h> |