Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Modernize method declarations.
[simgrid.git] / src / surf / storage_n11.hpp
index fdd2abf..17e4a8e 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2013-2019. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2013-2020. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -29,8 +29,8 @@ class XBT_PRIVATE StorageN11Action;
 class StorageN11Model : public StorageModel {
 public:
   StorageN11Model();
-  StorageImpl* createStorage(const std::string& id, const std::string& type_id, const std::string& content_name,
-                             const std::string& attach) override;
+  StorageImpl* createStorage(std::string& filename, int lineno, const std::string& id, const std::string& type_id,
+                             const std::string& content_name, const std::string& attach) override;
   double next_occurring_event(double now) override;
   void update_actions_state(double now, double delta) override;
 };
@@ -44,7 +44,7 @@ public:
   StorageN11(StorageModel* model, const std::string& name, kernel::lmm::System* maxminSystem, double bread,
              double bwrite, const std::string& type_id, const std::string& content_name, sg_size_t size,
              const std::string& attach);
-  virtual ~StorageN11() = default;
+  ~StorageN11() override = default;
   StorageAction* io_start(sg_size_t size, s4u::Io::OpType type) override;
   StorageAction* read(sg_size_t size) override;
   StorageAction* write(sg_size_t size) override;