Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
The sed version used on macos doesn't like the I flag..
[simgrid.git] / src / surf / storage_interface.hpp
index 46cbf19..ce61419 100644 (file)
@@ -68,8 +68,6 @@ public:
                                  const char* content_name, const char* content_type,
                                  xbt_dict_t properties, const char *attach) = 0;
 
-  bool next_occuring_event_isIdempotent() {return true;}
-
   std::vector<Storage*> p_storageList;
 };
 
@@ -248,10 +246,10 @@ public:
 
   void setState(simgrid::surf::Action::State state) override;
 
-  e_surf_action_storage_type_t m_type;
-  Storage *p_storage;
-  surf_file_t p_file;
-  double progress;
+  e_surf_action_storage_type_t type_;
+  Storage* storage_;
+  surf_file_t file_;
+  double progress_;
 };
 
 }