Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics
[simgrid.git] / src / kernel / EngineImpl.hpp
index 839f300..d8f96c2 100644 (file)
@@ -4,12 +4,14 @@
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
 #include <simgrid/s4u/forward.hpp>
-#include <xbt/dict.h>
+#include <string>
+#include <unordered_map>
 
 namespace simgrid {
 namespace kernel {
 namespace routing {
 class NetZoneImpl;
+class NetPoint;
 }
 
 class EngineImpl {
@@ -19,6 +21,7 @@ public:
   kernel::routing::NetZoneImpl* netRoot_ = nullptr;
 
 protected:
+  std::unordered_map<std::string, simgrid::kernel::routing::NetPoint*> netpoints_;
   friend simgrid::s4u::Engine;
 };
 }