X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a36e8044de323971221f5da46773d54e312d3b3c..669001c1adb41a9dfc610fc2984709010f1a09e9:/src/kernel/EngineImpl.hpp diff --git a/src/kernel/EngineImpl.hpp b/src/kernel/EngineImpl.hpp index 750cb62b99..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 AsImpl; +class NetZoneImpl; +class NetPoint; } class EngineImpl { public: EngineImpl(); virtual ~EngineImpl(); - kernel::routing::AsImpl* rootAs_ = nullptr; + kernel::routing::NetZoneImpl* netRoot_ = nullptr; protected: + std::unordered_map netpoints_; friend simgrid::s4u::Engine; }; }