Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
even more cleanups in the routing
[simgrid.git] / src / surf / platform.hpp
1 /* Copyright (c) 2016. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef SIMGRID_PLATFORM_HPP
8 #define SIMGRID_PLATFORM_HPP
9
10 #include <xbt/base.h>
11 #include <xbt/signal.hpp>
12 #include <simgrid/forward.h>
13
14 namespace simgrid {
15 namespace surf {
16
17 extern XBT_PRIVATE simgrid::xbt::signal<void(sg_platf_link_cbarg_t)> on_link;
18 extern XBT_PRIVATE simgrid::xbt::signal<void(sg_platf_cluster_cbarg_t)> on_cluster;
19 extern XBT_PRIVATE simgrid::xbt::signal<void(void)> on_postparse;
20
21 }
22 }
23
24 #endif