Salome HOME
Compilation without libBatch.
[modules/kernel.git] / src / HDFPersist / HDFcontainerObject.cc
index 70ecf2e13f05a7eff10d7ca09bea890f5a0ec209..e293876568fc8b036ba6fb04f37a0138d90c2115 100644 (file)
@@ -1,39 +1,34 @@
-//  SALOME HDFPersist : implementation of HDF persitent ( save/ restore )
+// Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
 //
-//  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
-// 
-//  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 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
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+// 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 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
+//
+
+//  SALOME HDFPersist : implementation of HDF persitent ( save/ restore )
 //  File   : HDFcontainerObject.cc
 //  Module : SALOME
-
-extern "C"
-{
+//
 #include "hdfi.h"
-}
 #include "HDFcontainerObject.hxx"
 #include "HDFexception.hxx"
-#include "utilities.h"
-using namespace std;
 
-HDFcontainerObject::HDFcontainerObject(char *name)
+HDFcontainerObject::HDFcontainerObject(const char *name)
   : HDFinternalObject(name)
 {
   _nsons = 0;
@@ -48,10 +43,8 @@ HDFcontainerObject::~HDFcontainerObject()
     {
       sonToDelete = _firstson;
       _firstson = _firstson->GetNextBrother();
-//       MESSAGE("son to delete: " << sonToDelete);
       delete sonToDelete;
     }
-//   MESSAGE("destruction: " << this);
 }
 
 int HDFcontainerObject::nInternalObjects()
@@ -66,11 +59,6 @@ void HDFcontainerObject::InternalObjectIndentify(int rank, char *object_name)
 
 void HDFcontainerObject::AddSon(HDFinternalObject *son)
 {
-//   MESSAGE("add son ")  MESSAGE("add to this" << this);
-//   MESSAGE("add son " << son);
-//   MESSAGE("firstson " << _firstson);
-//   MESSAGE("lastson  " << _lastson);
-
   if (_nsons == 0)
     {
       _firstson = son;
@@ -83,8 +71,6 @@ void HDFcontainerObject::AddSon(HDFinternalObject *son)
       _lastson = son;
     }
   _nsons ++;
-//   MESSAGE("firstson " << _firstson);
-//   MESSAGE("lastson  " << _lastson);
 }
 
 HDFinternalObject *HDFcontainerObject::GetFirstSon()