From dc3f6a01e9553fc925f146510fdc74db5d5415b2 Mon Sep 17 00:00:00 2001 From: jez_higgins <> Date: Thu, 20 Mar 2003 16:15:25 +0000 Subject: [PATCH] ParserConfig.h is now generated from ParserConfig.tpl --- SAX/ParserConfig.h | 70 ---------------------------------------------- 1 file changed, 70 deletions(-) delete mode 100644 SAX/ParserConfig.h diff --git a/SAX/ParserConfig.h b/SAX/ParserConfig.h deleted file mode 100644 index 98634067..00000000 --- a/SAX/ParserConfig.h +++ /dev/null @@ -1,70 +0,0 @@ -#ifndef ParserConfig_h // -*- C++ -*- -# define ParserConfig_h - -/** - * Uncomment below what you use: expat, libxml2, xerces (1 or 2), msxml2 - * or garden. - * - */ - -// # define USE_EXPAT -# define USE_LIBXML2 -// # define USE_XERCES -// # define USE_MSXML -// # define USE_XERCES1 -// # define USE_XERCES -// # define USE_GARDEN - -#ifndef DEF_SAX_P -# ifdef USE_EXPAT -// # define DEF_SAX_P expat_wrapper -# endif -# ifdef USE_LIBXML2 -# define DEF_SAX_P libxml2_wrapper -# endif -# ifdef USE_MSXML -// # define DEF_SAX_P msxml2_wrapper -# endif -# ifdef USE_GARDEN -// # define DEF_SAX_P Garden -# endif -# if defined(USE_XERCES) || defined(USE_XERCES1) -// # define DEF_SAX_P xerces_wrapper -# endif -#endif - - -# ifdef USE_EXPAT -# include -# endif - -# ifdef USE_LIBXML2 -# include -# endif - -# ifdef USE_MSXML -# include -# endif - -# if defined(USE_XERCES) || defined(USE_XERCES1) -# include -# endif - -# ifdef USE_GARDEN -# include -# endif - - -# ifndef NO_DEFAULT_PARSER -# ifdef DEF_SAX_P -namespace SAX -{ - template > - class XMLReader : public wrapper { }; -} -# else -# error "No default parser defined." -# endif -# endif // NO_DEFAULT_PARSER - -# endif