Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
used unsigned long long to have more than 50 bits
[simgrid.git] / src / kernel / EngineImpl.hpp
1 /* Copyright (c) 2016. 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/forward.hpp>
7 #include <xbt/dict.h>
8
9 #include <string>
10 #include <unordered_map>
11
12 namespace simgrid {
13 namespace kernel {
14 namespace routing {
15 class NetZoneImpl;
16 class NetPoint;
17 }
18
19 class EngineImpl {
20 public:
21   EngineImpl();
22   virtual ~EngineImpl();
23   kernel::routing::NetZoneImpl* netRoot_ = nullptr;
24
25 protected:
26   std::unordered_map<std::string, simgrid::kernel::routing::NetPoint*> netpoints_;
27   friend simgrid::s4u::Engine;
28 };
29 }
30 }