Salome HOME
MEDFileFields::LoadSpecificEntities to improve perf when reading lots of TS.
[tools/medcoupling.git] / src / ParaMEDMEM / ICoCoMEDField.hxx
index 95b873a539a2e5e177b5ea2acc173699f8275567..c5dbdbb14cec0e11fc9875ee16888988a9fadd4a 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2014  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
 
 namespace ICoCo
 {
-  class TrioField;
-  
   class MEDField : public ICoCo::Field
   {
   public:
     MEDField():_field(0) { }
     MEDField(ParaMEDMEM::MEDCouplingFieldDouble* field);
+    MEDField(const MEDField& field);
+    MEDField& operator=(const MEDField& field);
     virtual ~MEDField();
     ParaMEDMEM::MEDCouplingFieldDouble *getField() const  { return _field; }
     const ParaMEDMEM::MEDCouplingMesh *getMesh() const { return _field->getMesh(); }