X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/13fb4af932a02ea0bd4293d1e55ac071de326f80..d5b29830df70e823202e384a7655e4371193ecd7:/include/simgrid/s4u/Host.hpp diff --git a/include/simgrid/s4u/Host.hpp b/include/simgrid/s4u/Host.hpp index 6f9d6ce59e..31ecd57f3e 100644 --- a/include/simgrid/s4u/Host.hpp +++ b/include/simgrid/s4u/Host.hpp @@ -7,8 +7,7 @@ #define SIMGRID_S4U_HOST_HPP #include - -#include +#include #include "xbt/Extendable.hpp" #include "xbt/dict.h" @@ -95,21 +94,20 @@ public: int pstatesCount() const; void setPstate(int pstate_index); int pstate(); - xbt_dict_t mountedStoragesAsDict(); // HACK void attachedStorages(std::vector * storages); /** Get an associative list [mount point]->[Storage] of all local mount points. * * This is defined in the platform file, and cannot be modified programatically (yet). */ - boost::unordered_map const& mountedStorages(); + std::unordered_map const& mountedStorages(); void routeTo(Host * dest, std::vector * links, double* latency); void routeTo(Host * dest, std::vector * links, double* latency); private: simgrid::xbt::string name_ = "noname"; - boost::unordered_map* mounts = nullptr; // caching + std::unordered_map* mounts = nullptr; // caching public: // TODO, this could be a unique_ptr @@ -148,6 +146,5 @@ public class Host { */ public native int getLoad(); - } #endif