Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[SAMPI] Move ampi signals to simgrid::smpi::plugin::ampi
[simgrid.git] / src / smpi / plugins / ampi / ampi.hpp
1 /* Copyright (c) 2010-2018. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include <simgrid/s4u.hpp>
7
8 namespace simgrid {
9 namespace smpi {
10 namespace plugin {
11 namespace ampi {
12   extern simgrid::xbt::signal<void(simgrid::s4u::ActorPtr)> on_iteration_out;
13   extern simgrid::xbt::signal<void(simgrid::s4u::ActorPtr)> on_iteration_in;
14 }
15 }
16 }
17 }
18