X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a79a8e1cab86ccc687cfbc97b01b735acb996f16..f5ad0a2a3554dc8f10c8fbba5715b7c92ff1d350:/src/kernel/EngineImpl.hpp diff --git a/src/kernel/EngineImpl.hpp b/src/kernel/EngineImpl.hpp index 19aefe088e..d8f96c2acd 100644 --- a/src/kernel/EngineImpl.hpp +++ b/src/kernel/EngineImpl.hpp @@ -4,21 +4,24 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ #include -#include +#include +#include namespace simgrid { namespace kernel { namespace routing { class NetZoneImpl; +class NetPoint; } class EngineImpl { public: EngineImpl(); virtual ~EngineImpl(); - kernel::routing::NetZoneImpl* rootAs_ = nullptr; + kernel::routing::NetZoneImpl* netRoot_ = nullptr; protected: + std::unordered_map netpoints_; friend simgrid::s4u::Engine; }; }