Salome HOME
Addition of maps in MEDCoupling
[tools/medcoupling.git] / src / MEDCoupling / MEDCouplingTimeLabel.hxx
index cd5f1396907a870430b317f4ec3fddb798d41dc1..1c534dc15c47a08a18edd094c69794e06644a260 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2014  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
@@ -25,7 +25,7 @@
 
 #include <cstddef>
 
-namespace ParaMEDMEM
+namespace MEDCoupling
 {
   /*!
    * Class representing a label of time of the lastely modified part of this.
@@ -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