X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fyacsloader%2FxmlParserBase.hxx;h=da6b179f95a4de764cc782bce13c42aad801d7fa;hb=f31c1aa1cf3481bf51166f0c4e3dd118bc3ab43b;hp=077fcdf860bc64f549cae5e0a6341290d3dc3d8a;hpb=f4c10bf1781a76534bb1fa293aef541aef56148b;p=modules%2Fyacs.git diff --git a/src/yacsloader/xmlParserBase.hxx b/src/yacsloader/xmlParserBase.hxx index 077fcdf86..da6b179f9 100644 --- a/src/yacsloader/xmlParserBase.hxx +++ b/src/yacsloader/xmlParserBase.hxx @@ -1,59 +1,30 @@ -// Copyright (C) 2006-2008 CEA/DEN, EDF R&D +// Copyright (C) 2006-2015 CEA/DEN, EDF R&D // -// This library is free software; you can redistribute it and/or -// modify it under the terms of the GNU Lesser General Public -// License as published by the Free Software Foundation; either -// version 2.1 of the License. +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. // -// This library is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// Lesser General Public License for more details. +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. // -// You should have received a copy of the GNU Lesser General Public -// License along with this library; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // + #ifndef __XMLPARSERBASE_HXX_ #define __XMLPARSERBASE_HXX_ - -// --- select only one of the following packages ------------------------------ -// - libxml2 comes with gnome, so it's almost always already installed, -// but may not not work (see below). -// - libexpat is a less common package, but light, and works fine. - -// With standard installation of libxml2, C++ exception cannot be catched -// during the parse process. This is required for normal use of yacs. -// libxml2 must be generated with configure --with-fexceptions ... -// (to be tested) -// Developpement and tests are done with libexpat. - -//#define USE_LIBXML2 -#define USE_EXPAT - -// --- specific part for libxml2 ---------------------------------------------- - -#ifdef USE_LIBXML2 -extern "C" -{ #include -} + #define XMLCALL #define XML_Char char inline XML_Char* tochar(const xmlChar *c) { return (XML_Char*)c; }; -#endif - -// --- specific part for expat ------------------------------------------------ - -#ifdef USE_EXPAT - #include -#define xmlChar XML_Char -inline const XML_Char* tochar(const xmlChar *c) { return c; }; -#endif - // --- generic part ----------------------------------------------------------- @@ -113,15 +84,9 @@ public: std::map< std::string, int > counts; -#ifdef USE_LIBXML2 static _xmlParserCtxt* _xmlParser; static void XML_SetUserData(_xmlParserCtxt* ctxt, xmlParserBase* parser); -#endif - -#ifdef USE_EXPAT - static XML_Parser _xmlParser; -#endif static std::stack _stackParser;