Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / include / simgrid / plugins / ns3.hpp
1 /* Copyright (c) 2017-2022. 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 #ifndef SIMGRID_PLUGINS_LOAD_H_
7 #define SIMGRID_PLUGINS_LOAD_H_
8
9 #include <ns3/node.h>
10 #include <ns3/ptr.h>
11 #include <simgrid/config.h>
12 #include <simgrid/forward.h>
13 #include <xbt/base.h>
14
15 namespace simgrid {
16 /** Returns the ns3 node from a simgrid host */
17 XBT_PUBLIC ns3::Ptr<ns3::Node> get_ns3node_from_sghost(simgrid::s4u::Host* host);
18 }; // namespace simgrid
19
20 #endif