Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
simplify the I/O stream thing A LOT. Might be plunged in CLM03 afterall
[simgrid.git] / src / surf / disk_s19.hpp
index 478b188966d83bf58b924e9b5e8128f908c2bafe..b4c352bee3b9d40f240af458e1b2944abbb5f388 100644 (file)
@@ -26,7 +26,9 @@ class XBT_PRIVATE DiskS19Action;
 
 class DiskS19Model : public DiskModel {
 public:
-  using DiskModel::DiskModel;
+  explicit DiskS19Model(const std::string& name);
+  DiskS19Model(const DiskS19Model&) = delete;
+  DiskS19Model& operator=(const DiskS19Model&) = delete;
   DiskImpl* create_disk(const std::string& name, double read_bandwidth, double write_bandwidth) override;
 
   void update_actions_state(double now, double delta) override;
@@ -53,7 +55,6 @@ public:
 class DiskS19Action : public DiskAction {
 public:
   DiskS19Action(Model* model, double cost, bool failed);
-  void update_remains_lazy(double now) override;
 };
 
 } // namespace simgrid::kernel::resource