On Monday 07 July 2003 04:08 am, Steven T. Hatton wrote: I took all the code out of the kdevelop environment and took out all the KDE specific stuff. I then hacked the /usr/lib/qt3/mkspecs/linux-g++/qmake.conf to add the "-lxerces-c" to the QMAKE_LIBS variable and everything works. There was a problem with what I sent. See below. [snip]
/ #ifndef DOMSUPPORT_H #define DOMSUPPORT_H
#include <xercesc/util/PlatformUtils.hpp> [...]
This would not have worked because I don't have the correct "using xercesc::XMLException" statement. But I had attemted it with that, as well as with "using namespace xercesc" which didn't work either.
using xercesc::DOMDocument; using xercesc::DOMImplementation; using xercesc::DOMImplementationLS; using xercesc::DOMWriter; using xercesc::XMLString; using xercesc::DOMImplementationRegistry; using xercesc::XMLFormatTarget; using xercesc::StdOutFormatTarget;
steven