X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c2505da34e3d93fa429d9f047e56257378901ee4..30aca4d4af004d1ec899d12f0a9fe3997e9be15e:/src/surf/storage_interface.hpp diff --git a/src/surf/storage_interface.hpp b/src/surf/storage_interface.hpp index ce6141936e..e2b39efafc 100644 --- a/src/surf/storage_interface.hpp +++ b/src/surf/storage_interface.hpp @@ -64,9 +64,8 @@ public: StorageModel(); ~StorageModel(); - virtual Storage *createStorage(const char* id, const char* type_id, - const char* content_name, const char* content_type, - xbt_dict_t properties, const char *attach) = 0; + virtual Storage* createStorage(const char* id, const char* type_id, const char* content_name, + const char* content_type, const char* attach) = 0; std::vector p_storageList; }; @@ -81,20 +80,6 @@ public: class Storage : public simgrid::surf::Resource, public simgrid::surf::PropertyHolder { public: - /** - * @brief Storage constructor - * - * @param model StorageModel associated to this Storage - * @param name The name of the Storage - * @param props Dictionary of properties associated to this Storage - * @param type_id [description] - * @param content_name [description] - * @param content_type [description] - * @param size [description] - */ - Storage(Model *model, const char *name, xbt_dict_t props, - const char* type_id, const char *content_name, const char *content_type, - sg_size_t size); /** * @brief Storage constructor @@ -103,11 +88,8 @@ public: * @param name The name of the Storage * @param props Dictionary of properties associated to this Storage */ - Storage(Model *model, const char *name, xbt_dict_t props, - lmm_system_t maxminSystem, double bread, double bwrite, - double bconnection, - const char* type_id, const char *content_name, const char *content_type, - sg_size_t size, const char *attach); + Storage(Model* model, const char* name, lmm_system_t maxminSystem, double bread, double bwrite, double bconnection, + const char* type_id, const char* content_name, const char* content_type, sg_size_t size, const char* attach); ~Storage();