X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a976ff26ca5afba53350d9ed449c122b52972824..7cee0f64a84b4459068dc23ff23e491a3e3b288b:/examples/s4u/io-file-system/s4u-io-file-system.cpp diff --git a/examples/s4u/io-file-system/s4u-io-file-system.cpp b/examples/s4u/io-file-system/s4u-io-file-system.cpp index 6f0f84b4fe..3f18c14691 100644 --- a/examples/s4u/io-file-system/s4u-io-file-system.cpp +++ b/examples/s4u/io-file-system/s4u-io-file-system.cpp @@ -58,12 +58,12 @@ public: // Now rename file from ./tmp/data.txt to ./tmp/simgrid.readme std::string newpath = "/home/tmp/simgrid.readme"; - XBT_INFO("Move '%s' to '%s'", file->getPath(), newpath.c_str()); + XBT_INFO("Move '%s' to '%s'", file->get_path(), newpath.c_str()); file->move(newpath); // Test attaching some user data to the file - file->setUserdata(new std::string("777")); - std::string* file_data = static_cast(file->getUserdata()); + file->set_userdata(new std::string("777")); + std::string* file_data = static_cast(file->get_userdata()); XBT_INFO("User data attached to the file: %s", file_data->c_str()); delete file_data; @@ -82,7 +82,7 @@ public: // Reopen the file and then unlink it file = new simgrid::s4u::File("/home/tmp/simgrid.readme", nullptr); - XBT_INFO("Unlink file: '%s'", file->getPath()); + XBT_INFO("Unlink file: '%s'", file->get_path()); file->unlink(); delete file; // Unlinking the file on "disk" does not free the object