X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ea5ba71aa6e9e92becf2763c71c92fed3228c794..ec0f3170bb7f94bf2735c8cd777468df5b5c7722:/src/kernel/EngineImpl.hpp?ds=sidebyside diff --git a/src/kernel/EngineImpl.hpp b/src/kernel/EngineImpl.hpp index 750cb62b99..d3501dc660 100644 --- a/src/kernel/EngineImpl.hpp +++ b/src/kernel/EngineImpl.hpp @@ -6,19 +6,24 @@ #include #include +#include +#include + namespace simgrid { namespace kernel { namespace routing { -class AsImpl; +class NetZoneImpl; +class NetCard; } class EngineImpl { public: EngineImpl(); virtual ~EngineImpl(); - kernel::routing::AsImpl* rootAs_ = nullptr; + kernel::routing::NetZoneImpl* netRoot_ = nullptr; protected: + std::unordered_map netcards_; friend simgrid::s4u::Engine; }; }