Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove unused typedefs.
[simgrid.git] / src / kernel / EngineImpl.hpp
index 8593bf8..4e2ef24 100644 (file)
@@ -3,6 +3,7 @@
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
+#include <map>
 #include <simgrid/s4u/NetZone.hpp>
 #include <simgrid/s4u/forward.hpp>
 #include <string>
@@ -18,6 +19,7 @@ public:
   kernel::routing::NetZoneImpl* netRoot_ = nullptr;
 
 private:
+  std::map<std::string, simgrid::s4u::Host*> hosts_;
   std::unordered_map<std::string, simgrid::kernel::routing::NetPoint*> netpoints_;
   friend simgrid::s4u::Engine;
 };