X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f1e469ce075c0a1ad21a7fd0fdb587f9a3cb5289..ef95f31a9271fe2f8b959b36627d02a7d3d8d8cf:/include/simgrid/s4u/File.hpp diff --git a/include/simgrid/s4u/File.hpp b/include/simgrid/s4u/File.hpp index d9d0080ab1..278081f2db 100644 --- a/include/simgrid/s4u/File.hpp +++ b/include/simgrid/s4u/File.hpp @@ -8,13 +8,12 @@ #include +#include "src/surf/StorageImpl.hpp" #include namespace simgrid { namespace s4u { -class Storage; - /** @brief A simulated file * * Used to simulate the time it takes to access to a file, but does not really store any information. @@ -71,6 +70,10 @@ public: XBT_PUBLIC(msg_error_t) MSG_file_rcopy(msg_file_t fd, msg_host_t host, const char* fullpath); XBT_PUBLIC(msg_error_t) MSG_file_rmove(msg_file_t fd, msg_host_t host, const char* fullpath); */ + char* storage_type; + char* storageId; + char* mount_point; + int desc_id = 0; private: smx_file_t pimpl_ = nullptr;