X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b67d191c3627cb8e64017cfedcbbbafe9f4dfcc3..db7487ee3ab1cac3252f064000752ec1274c1be3:/examples/s4u/io/s4u_io.cpp diff --git a/examples/s4u/io/s4u_io.cpp b/examples/s4u/io/s4u_io.cpp index b3aaa11a71..e9ebf578de 100644 --- a/examples/s4u/io/s4u_io.cpp +++ b/examples/s4u/io/s4u_io.cpp @@ -4,9 +4,8 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ #include -#include -#include "simgrid/s4u.h" +#include "simgrid/s4u.hpp" XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "a sample log category"); @@ -104,7 +103,7 @@ int main(int argc, char **argv) { simgrid::s4u::Engine *e = new simgrid::s4u::Engine(&argc,argv); e->loadPlatform("../../platforms/storage/storage.xml"); - simgrid::s4u::Actor("host", simgrid::s4u::Host::by_name("denise"), MyHost()); + simgrid::s4u::Actor::createActor("host", simgrid::s4u::Host::by_name("denise"), MyHost()); e->run(); return 0; }