Salome HOME
Updated copyright comment
[plugins/ghs3dprlplugin.git] / src / tepal2med / ghs3dprl_msg_parser.cxx
old mode 100755 (executable)
new mode 100644 (file)
index 08badd1..6756dcd
@@ -1,9 +1,9 @@
-// Copyright (C) 2007-2008 OPEN CASCADE, CEA/DEN, EDF R&D
+// Copyright (C) 2007-2024  CEA, EDF
 //
 // 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.
+// 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
 //
 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+
 // ---
-//
 // File   : ghs3dprl_mesh_parser.cxx
 // Author : Christian VAN WAMBEKE (CEA) (from Hexotic plugin Lioka RAZAFINDRAZAKA)
-//
 // ---
-
+//
 #include <iostream>
 
 #include "ghs3dprl_msg_parser.h"
 #include "ghs3dprl_mesh_wrap.h"
 
-using namespace med_2_2;
-
 //************************************
 bool ghs3dprl_msg_parser::startDocument()
 {
@@ -56,10 +53,10 @@ bool ghs3dprl_msg_parser::startDocument()
 }
 
 //************************************
-bool ghs3dprl_msg_parser::startElement(const QString &namespaceURI,
-                                      const QString &localName,
-                                      const QString &qName,
-                                      const QXmlAttributes &attrs)
+bool ghs3dprl_msg_parser::startElement(const QString &/*namespaceURI*/,
+                                       const QString &/*localName*/,
+                                       const QString &qName,
+                                       const QXmlAttributes &attrs)
 {
   bool ok;
   if (verbose) std::cout<<indent.toLatin1().constData()<<qName.toLatin1().constData()<<std::endl;
@@ -175,9 +172,9 @@ bool ghs3dprl_msg_parser::startElement(const QString &namespaceURI,
 }
 
 //************************************
-bool ghs3dprl_msg_parser::endElement(const QString &namespaceURI,
-                                    const QString &localName,
-                                    const QString &qName)
+bool ghs3dprl_msg_parser::endElement(const QString &/*namespaceURI*/,
+                                     const QString &/*localName*/,
+                                     const QString &qName)
 {
   indent.remove((uint)0,3);
   if (verbose) std::cout<<indent.toLatin1().constData()<<"\\"<<qName.toLatin1().constData()<<std::endl;
@@ -217,8 +214,8 @@ bool ghs3dprl_msg_parser::characters(const QString &strini)
       double ver=str.toDouble(&ok);
       if (!ok || ver!=1e0)
       {
-       std::cout<<"version "<<str.toLatin1().constData()<<" fichier .msg inconnue"<<std::endl;
-       return false;
+      std::cout<<"version "<<str.toLatin1().constData()<<" fichier .msg inconnue"<<std::endl;
+      return false;
       }
       else return true;
     }
@@ -231,14 +228,14 @@ bool ghs3dprl_msg_parser::characters(const QString &strini)
       //printf("%staille attendue=%i taille vue=%i\n",(const char *)indent.toLatin1().constData(),nbcount,nb);
       do
       {
-       tmint[i]=str.section(' ',i,i).toLong(&ok);
-       //printf("tmint[%i]=%i\n",i,tmint[i]);
-       i++;
+      tmint[i]=str.section(' ',i,i).toLong(&ok);
+      //printf("tmint[%i]=%i\n",i,tmint[i]);
+      i++;
       } while ((i<nb) && ok );
       if (i<nb)
       {
-       std::cout<<"pb conversion "<<i<<" eme entier="<<str.section(' ',i-1,i-1).toLatin1().constData()<<std::endl;
-       std::cout<<indent.toLatin1().constData()<<"etat="<<etat<<" nb="<<nb<<std::endl<<str.toLatin1().constData()<<std::endl;
+      std::cout<<"pb conversion "<<i<<" eme entier="<<str.section(' ',i-1,i-1).toLatin1().constData()<<std::endl;
+      std::cout<<indent.toLatin1().constData()<<"etat="<<etat<<" nb="<<nb<<std::endl<<str.toLatin1().constData()<<std::endl;
       }
     }
     if (nb==1)
@@ -247,8 +244,8 @@ bool ghs3dprl_msg_parser::characters(const QString &strini)
       tmint[0]=str.toLong(&ok);
       if (!ok)
       {
-       std::cout<<"pb conversion 1er entier="<<str.toLatin1().constData()<<std::endl;
-       std::cout<<indent.toLatin1().constData()<<"etat="<<etat<<" nb="<<nb<<std::endl;
+      std::cout<<"pb conversion 1er entier="<<str.toLatin1().constData()<<std::endl;
+      std::cout<<indent.toLatin1().constData()<<"etat="<<etat<<" nb="<<nb<<std::endl;
       }
     }
     
@@ -260,8 +257,8 @@ bool ghs3dprl_msg_parser::characters(const QString &strini)
     " neighbour="<<neighbourindice<<
     " file="<<mailw->nofile<<std::endl;*/
   tmp=tmp.sprintf("MS%ld NE%ld ",
-                 mailw->nofile,neighbourindice)+
-    shorttypel+shortsendreceive;
+  mailw->nofile,neighbourindice)+
+  shorttypel+shortsendreceive;
   tmp=tmp.simplified();
   ok=mailw->insert_key(tmp,montab);
   return true;