X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f89671e0bd7450461d70d5ced6079123e73c2a63..d8cfc4c2e6eec35703dc7f3158188eaa6e2d24a5:/src/surf/storage_n11.hpp diff --git a/src/surf/storage_n11.hpp b/src/surf/storage_n11.hpp index fdd2abf20d..2face7f595 100644 --- a/src/surf/storage_n11.hpp +++ b/src/surf/storage_n11.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2013-2021. 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;