Salome HOME
Correction of bug concerning UNIV info status.
[tools/medcoupling.git] / src / ParaMEDMEM / ICoCoMEDField.hxx
index 94d2ed59279188ba5b2a2d29a2e1f40aee62ffba..c5dbdbb14cec0e11fc9875ee16888988a9fadd4a 100644 (file)
@@ -1,21 +1,22 @@
-//  Copyright (C) 2007-2008  CEA/DEN, EDF R&D
+// Copyright (C) 2007-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 __ICOCOMEDFIELD_HXX__
 #define __ICOCOMEDFIELD_HXX__
 
 
 #include <vector>
 
-namespace ParaMEDMEM
-{
-  class ParaMESH;
-  class ParaFIELD;
-  class ParaSUPPORT;
-  class ComponentTopology;
-  class ProcessorGroup;
-}
 namespace ICoCo
 {
-  class TrioField;
-  
   class MEDField : public ICoCo::Field
   {
   public:
-    MEDField(){};
-    MEDField(ParaMEDMEM::ParaMESH* mesh, ParaMEDMEM::ParaFIELD* field);
-    MEDField(TrioField& , const ParaMEDMEM::ProcessorGroup& group);
+    MEDField():_field(0) { }
+    MEDField(ParaMEDMEM::MEDCouplingFieldDouble* field);
+    MEDField(const MEDField& field);
+    MEDField& operator=(const MEDField& field);
     virtual ~MEDField();
-    ParaMEDMEM::ParaFIELD* getField() const  { return _field; }
-    ParaMEDMEM::ParaMESH* getMesh()const { return _mesh; }
+    ParaMEDMEM::MEDCouplingFieldDouble *getField() const  { return _field; }
+    const ParaMEDMEM::MEDCouplingMesh *getMesh() const { return _field->getMesh(); }
   private:
-    ParaMEDMEM::ParaMESH* _mesh;
-    ParaMEDMEM::ParaFIELD* _field;
-    ParaMEDMEM::MEDCouplingFieldDouble* _local_field;
-    bool _has_field_ownership;
-    ParaMEDMEM::MEDCouplingUMesh* _local_mesh;
-    ParaMEDMEM::ParaMESH* _support;
-    ParaMEDMEM::ComponentTopology* _comp_topology;
+    ParaMEDMEM::MEDCouplingFieldDouble *_field;
   };
-};
+}
 
 #endif