X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/97746052df546fd0694117467251555199c03b9b..6063afbddf453571e145b5236294c8631d9eecb2:/include/simgrid/s4u/storage.hpp?ds=sidebyside diff --git a/include/simgrid/s4u/storage.hpp b/include/simgrid/s4u/storage.hpp index 4504bb8924..4297f7c701 100644 --- a/include/simgrid/s4u/storage.hpp +++ b/include/simgrid/s4u/storage.hpp @@ -7,9 +7,13 @@ #ifndef INCLUDE_SIMGRID_S4U_STORAGE_HPP_ #define INCLUDE_SIMGRID_S4U_STORAGE_HPP_ +#include + #include -#include "xbt/base.h" -#include "simgrid/simix.h" + +#include + +#include #include namespace simgrid { @@ -18,7 +22,6 @@ namespace s4u { XBT_PUBLIC_CLASS Storage { friend s4u::Engine; -private: Storage(std::string name, smx_storage_t inferior); virtual ~Storage(); @@ -51,6 +54,7 @@ private: static boost::unordered_map *storages_; std::string name_; + size_t size_; smx_storage_t pimpl_ = nullptr; void *userdata_ = nullptr; };