mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-27 21:58:30 +01:00
707cd47f41
XMLReaderInterface template. It is only interested in string_type and string_adaptor. All the fancy TMP to extract types and what not is only relevant in *_wrapper classes.
85 lines
1.6 KiB
C++
85 lines
1.6 KiB
C++
#ifndef ARABICA_PARSERCONFIG_H
|
|
#define ARABICA_PARSERCONFIG_H
|
|
|
|
#ifdef USE_LIBXML2
|
|
#include <SAX/wrappers/saxlibxml2.hpp>
|
|
#undef DEF_SAX_P
|
|
#define DEF_SAX_P libxml2_wrapper
|
|
#ifdef _MSC_VER
|
|
#pragma message("Including libxml2")
|
|
#pragma comment(lib, "libxml2.lib")
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef USE_MSXML
|
|
#ifndef _MSC_VER
|
|
#error "Can only use MSXML on Windows"
|
|
#endif
|
|
#pragma message("Including MSXML")
|
|
#include <SAX/wrappers/saxmsxml2.hpp>
|
|
#undef DEF_SAX_P
|
|
#define DEF_SAX_P msxml2_wrapper
|
|
#endif
|
|
|
|
#ifdef USE_XERCES
|
|
#include <SAX/wrappers/saxxerces.hpp>
|
|
#undef DEF_SAX_P
|
|
#define DEF_SAX_P xerces_wrapper
|
|
#ifdef _MSC_VER
|
|
#pragma message("Including Xerces")
|
|
#ifdef _DEBUG
|
|
#pragma comment(lib, "xerces-c_2D.lib")
|
|
#else
|
|
#pragma comment(lib, "xerces-c_2.lib")
|
|
#endif
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef USE_GARDEN
|
|
#ifdef _MSC_VER
|
|
#pragma message("Including Garden")
|
|
#endif
|
|
#include <SAX/parsers/saxgarden.hpp>
|
|
#undef DEF_SAX_P
|
|
#define DEF_SAX_P Garden
|
|
#endif
|
|
|
|
#ifdef USE_EXPAT
|
|
#include <SAX/wrappers/saxexpat.hpp>
|
|
#undef DEF_SAX_P
|
|
#define DEF_SAX_P expat_wrapper
|
|
#ifdef _MSC_VER
|
|
#pragma message("Including Expat")
|
|
#ifndef XML_STATIC
|
|
#pragma comment(lib, "libexpat.lib")
|
|
#else
|
|
#pragma comment(lib, "libexpatMT.lib")
|
|
#endif
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma comment(lib, "wsock32.lib")
|
|
#endif
|
|
|
|
|
|
#ifndef NO_DEFAULT_PARSER
|
|
#ifdef DEF_SAX_P
|
|
namespace Arabica
|
|
{
|
|
namespace SAX
|
|
{
|
|
template<class string_type, class T0 = Arabica::nil_t, class T1 = Arabica::nil_t>
|
|
class XMLReader : public DEF_SAX_P<string_type, T0, T1> { };
|
|
} // namespace SAX
|
|
} // namespace Arabica
|
|
#else
|
|
#error "No default parser defined."
|
|
#endif
|
|
#endif
|
|
|
|
#undef DEF_P
|
|
|
|
#endif
|
|
|
|
|