X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ecd5f7562caf1d443bf22788fa5f4fac408776ec..b9d2f7277242a82702b73e4ccdf63aec98855b5e:/include/simgrid/s4u/Storage.hpp diff --git a/include/simgrid/s4u/Storage.hpp b/include/simgrid/s4u/Storage.hpp index 8ba939c39e..571c3b1d92 100644 --- a/include/simgrid/s4u/Storage.hpp +++ b/include/simgrid/s4u/Storage.hpp @@ -21,7 +21,7 @@ extern template class XBT_PUBLIC() Extendable; } namespace s4u { -XBT_ATTRIB_PUBLIC std::map* allStorages(); +XBT_ATTRIB_PUBLIC void getStorageList(std::map* whereTo); XBT_PUBLIC_CLASS Storage : public simgrid::xbt::Extendable { @@ -39,16 +39,10 @@ public: const char* getCname() const; const char* getType(); Host* getHost(); - sg_size_t getSize(); /** Retrieve the total amount of space of this storage element */ - sg_size_t getSizeFree(); - sg_size_t getSizeUsed(); - void decrUsedSize(sg_size_t size); - void incrUsedSize(sg_size_t size); std::map* getProperties(); const char* getProperty(std::string key); void setProperty(std::string, std::string value); - std::map* getContent(); void setUserdata(void* data) { userdata_ = data; } void* getUserdata() { return userdata_; }