Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Enable access to Exec from ExecImpl and fix get_finish_time()
[simgrid.git] / include / simgrid / s4u / Exec.hpp
index afc242f..72d0e2e 100644 (file)
@@ -30,6 +30,7 @@ namespace s4u {
  * @endrst
  */
 class XBT_PUBLIC Exec : public Activity_T<Exec> {
+  friend kernel::activity::ExecImpl;
   double priority_              = 1.0;
   double bound_                 = 0.0;
   double timeout_               = 0.0;
@@ -39,7 +40,9 @@ class XBT_PUBLIC Exec : public Activity_T<Exec> {
   bool parallel_ = false;
   double start_time_ = -1.0;
   double finish_time_ = -1.0;
-  Exec();
+
+protected:
+  explicit Exec(kernel::activity::ExecImplPtr pimpl);
 
 public:
   ~Exec() override = default;
@@ -80,7 +83,8 @@ public:
   Host* get_host() const;
   unsigned int get_host_number() const;
   double get_start_time() const { return start_time_; }
-  double get_finish_time() const;
+  double get_finish_time() const { return finish_time_; }
+  void set_finish_time(double finish_time) { finish_time_ = finish_time; }
   double get_cost() const;
   bool is_parallel() const { return parallel_; }
   bool is_assigned() const override { return not hosts_.empty(); }