Salome HOME
ParaUMesh.redistributeCells implementation.
[tools/medcoupling.git] / src / MEDCoupling / MEDCouplingTimeLabel.hxx
index 1c534dc15c47a08a18edd094c69794e06644a260..3da7bef0fab7b225eb14b00ab8f3d2842747e351 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2016  CEA/DEN, EDF R&D
+// Copyright (C) 2007-2020  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
@@ -23,6 +23,7 @@
 
 #include "MEDCoupling.hxx"
 
+#include <atomic>
 #include <cstddef>
 
 namespace MEDCoupling
@@ -34,10 +35,11 @@ namespace MEDCoupling
   class TimeLabel
   {
   public:
+    MEDCOUPLING_EXPORT TimeLabel(const TimeLabel& other) = default;
     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:
@@ -46,7 +48,7 @@ namespace MEDCoupling
     MEDCOUPLING_EXPORT void updateTimeWith(const TimeLabel& other) const;
     MEDCOUPLING_EXPORT void forceTimeOfThis(const TimeLabel& other) const;
   private:
-    static std::size_t GLOBAL_TIME;
+    static std::atomic<std::size_t> GLOBAL_TIME;
     mutable std::size_t _time;
   };