X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cc4ca208c5e056ac569cd07e08f09a416f3606fe..5b4afebffb0ca5c8c09c203c30c72242c8e9ad80:/examples/s4u/trace-platform/s4u-trace-platform.cpp diff --git a/examples/s4u/trace-platform/s4u-trace-platform.cpp b/examples/s4u/trace-platform/s4u-trace-platform.cpp new file mode 100644 index 0000000000..b448b0e1cc --- /dev/null +++ b/examples/s4u/trace-platform/s4u-trace-platform.cpp @@ -0,0 +1,14 @@ +/* Copyright (c) 2010, 2012-2016. The SimGrid Team. All rights reserved. */ + +/* This program is free software; you can redistribute it and/or modify it + * under the terms of the license (GNU LGPL) which comes with this package. */ + +#include "simgrid/s4u.hpp" + +int main(int argc, char* argv[]) +{ + simgrid::s4u::Engine e(&argc, argv); + e.loadPlatform(argv[1]); + e.run(); + return 0; +}