Salome HOME
bos #26594 Failed KERNEL test: fix typemap for swig 4x
[modules/yacs.git] / src / yacsloader / outputParsers.hxx
index e8334e6832444e3f14d0100ee658209c14e8ec50..328a5d79ea8e13051c65d1c8bc2d11b2ccfe7813 100644 (file)
@@ -1,3 +1,22 @@
+// Copyright (C) 2006-2021  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, 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.
+//
+// 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
+//
+
 #ifndef _OUTPUTPARSERS_HXX_
 #define _OUTPUTPARSERS_HXX_
 
@@ -40,6 +59,8 @@ struct outputdatatypeParser: parser
     }
   virtual void buildAttr(const XML_Char** attr)
     {
+      if (!attr)
+        return;
       DEBTRACE("outputdatatypeParser::buildAttr");
       required("name",attr);
       required("type",attr);
@@ -137,6 +158,8 @@ void outnodetypeParser<T>::onEnd(const char *el,parser* child)
 template <class T>
 void outnodetypeParser<T>::buildAttr(const XML_Char** attr)
     {
+      if (!attr)
+        return;
       DEBTRACE("outnodetypeParser::buildAttr");
       this->required("name",attr);
       for (int i = 0; attr[i]; i += 2)