X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FParaMEDMEM%2FICoCoMEDField.hxx;h=c5dbdbb14cec0e11fc9875ee16888988a9fadd4a;hb=a843e859241baea9b4942877174422d2891206ef;hp=94d2ed59279188ba5b2a2d29a2e1f40aee62ffba;hpb=48782c06022ca2caa36f849cb5a29ea4fe2aaa83;p=tools%2Fmedcoupling.git diff --git a/src/ParaMEDMEM/ICoCoMEDField.hxx b/src/ParaMEDMEM/ICoCoMEDField.hxx index 94d2ed592..c5dbdbb14 100644 --- a/src/ParaMEDMEM/ICoCoMEDField.hxx +++ b/src/ParaMEDMEM/ICoCoMEDField.hxx @@ -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__ @@ -25,36 +26,21 @@ #include -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