X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1ff58d7a8f46e07cdc902f96b99bb47d0a077932..24de4abff1dbfc7c779f6768186be603342df002:/include/simgrid/s4u/Storage.hpp diff --git a/include/simgrid/s4u/Storage.hpp b/include/simgrid/s4u/Storage.hpp index bc24f9329f..379648d5ae 100644 --- a/include/simgrid/s4u/Storage.hpp +++ b/include/simgrid/s4u/Storage.hpp @@ -1,5 +1,4 @@ -/* Copyright (c) 2006-2015, 2017. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2006-2018. 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. */ @@ -7,24 +6,24 @@ #ifndef INCLUDE_SIMGRID_S4U_STORAGE_HPP_ #define INCLUDE_SIMGRID_S4U_STORAGE_HPP_ -#include "xbt/Extendable.hpp" -#include #include #include +#include +#include + +#include #include #include -#include namespace simgrid { namespace xbt { -extern template class XBT_PUBLIC() Extendable; +extern template class XBT_PUBLIC Extendable; } namespace s4u { -void getStorageList(std::map* whereTo); +XBT_PUBLIC void getStorageList(std::map* whereTo); -XBT_PUBLIC_CLASS Storage : public simgrid::xbt::Extendable -{ +class XBT_PUBLIC Storage : public simgrid::xbt::Extendable { friend s4u::Engine; friend simgrid::surf::StorageImpl; @@ -33,10 +32,15 @@ public: virtual ~Storage() = default; /** Retrieve a Storage by its name. It must exist in the platform file */ static Storage* byName(std::string name); + + XBT_ATTRIB_DEPRECATED_v323("Please use Storage::get_name()") std::string const& getName() const { return get_name(); } + XBT_ATTRIB_DEPRECATED_v323("Please use Storage::get_cname()") const char* getCname() const { return get_cname(); } + /** @brief Retrieves the name of that storage as a C++ string */ - std::string const& getName() const; + std::string const& get_name() const; /** @brief Retrieves the name of that storage as a C string */ - const char* getCname() const; + const char* get_cname() const; + const char* getType(); Host* getHost();