X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FParaMEDMEM%2FICoCoMEDField.hxx;h=c5dbdbb14cec0e11fc9875ee16888988a9fadd4a;hb=a843e859241baea9b4942877174422d2891206ef;hp=ec9c5d426dc3941d4d4005a707981dd6ea2c700f;hpb=10f37bf6f33a762626d7f1093b2f5450c1688667;p=tools%2Fmedcoupling.git diff --git a/src/ParaMEDMEM/ICoCoMEDField.hxx b/src/ParaMEDMEM/ICoCoMEDField.hxx index ec9c5d426..c5dbdbb14 100644 --- a/src/ParaMEDMEM/ICoCoMEDField.hxx +++ b/src/ParaMEDMEM/ICoCoMEDField.hxx @@ -1,9 +1,9 @@ -// Copyright (C) 2007-2012 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. +// 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 @@ -28,20 +28,18 @@ namespace ICoCo { - class TrioField; - class MEDField : public ICoCo::Field { public: - MEDField():_mesh(0),_field(0) { } - MEDField(ParaMEDMEM::MEDCouplingUMesh* mesh, ParaMEDMEM::MEDCouplingFieldDouble* field); - MEDField(TrioField&); + MEDField():_field(0) { } + MEDField(ParaMEDMEM::MEDCouplingFieldDouble* field); + MEDField(const MEDField& field); + MEDField& operator=(const MEDField& field); virtual ~MEDField(); - ParaMEDMEM::MEDCouplingFieldDouble* getField() const { return _field; } - ParaMEDMEM::MEDCouplingUMesh* getMesh()const { return _mesh; } + ParaMEDMEM::MEDCouplingFieldDouble *getField() const { return _field; } + const ParaMEDMEM::MEDCouplingMesh *getMesh() const { return _field->getMesh(); } private: - ParaMEDMEM::MEDCouplingUMesh* _mesh; - ParaMEDMEM::MEDCouplingFieldDouble* _field; + ParaMEDMEM::MEDCouplingFieldDouble *_field; }; }