Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
2688f639c8470e626055d80f9134358c0b66204b
[simgrid.git] / src / surf / ns3 / ns3_interface.cc
1
2 #include "surf/ns3/ns3_interface.h"
3
4 #include "ns3/core-module.h"
5 #include "ns3/simulator-module.h"
6 #include "ns3/node-module.h"
7 #include "ns3/helper-module.h"
8 #include "ns3/global-route-manager.h"
9
10 #include "xbt/log.h"
11
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(interface_ns3, surf,
13                                 "Logging specific to the SURF network NS3 module");
14
15 //NodeContainer nodes;
16
17 void ns3_add_host(char * id)
18 {
19         XBT_INFO("Interface ns3 add host");
20 //      Ptr<Node> a =  CreateObject<Node> (0);
21 //      nodes.Add(a);
22 }