Salome HOME
Extra deps update
[tools/medcoupling.git] / src / MEDCoupling / MEDCouplingTimeLabel.hxx
index 87280fd92527a9a0e285954bde88027dee88f5d0..cc138c91d35659f051194e5ae1144e918956d65c 100644 (file)
@@ -1,9 +1,9 @@
-// Copyright (C) 2007-2013  CEA/DEN, EDF R&D
+// Copyright (C) 2007-2016  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
@@ -25,7 +25,7 @@
 
 #include <cstddef>
 
-namespace ParaMEDMEM
+namespace MEDCoupling
 {
   /*!
    * Class representing a label of time of the lastely modified part of this.
@@ -37,7 +37,7 @@ namespace ParaMEDMEM
     MEDCOUPLING_EXPORT TimeLabel& operator=(const TimeLabel& other);
     //! This method should be called when write access has been done on this.
     MEDCOUPLING_EXPORT void declareAsNew() const;
-    //! This method should be called on high level classes as Field or Mesh to take into acount modifications done in aggregates objects.
+    //! This method should be called on high level classes as Field or Mesh to take into account modifications done in aggregates objects.
     MEDCOUPLING_EXPORT virtual void updateTime() const = 0;
     MEDCOUPLING_EXPORT std::size_t getTimeOfThis() const { return _time; }
   protected:
@@ -49,6 +49,18 @@ namespace ParaMEDMEM
     static std::size_t GLOBAL_TIME;
     mutable std::size_t _time;
   };
+
+  class TimeLabelConstOverseer
+  {
+  public:
+    MEDCOUPLING_EXPORT TimeLabelConstOverseer(const TimeLabel *tl);
+    MEDCOUPLING_EXPORT void checkConst() const;
+    MEDCOUPLING_EXPORT bool resetState();
+    MEDCOUPLING_EXPORT bool keepTrackOfNewTL(const TimeLabel *tl);
+  private:
+    const TimeLabel *_tl;
+    std::size_t _ref_time;
+  };
 }
 
 #endif