X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a42065590d308653d71e5a49c8647c535b964a94..1ff58d7a8f46e07cdc902f96b99bb47d0a077932:/src/kernel/EngineImpl.hpp diff --git a/src/kernel/EngineImpl.hpp b/src/kernel/EngineImpl.hpp index 39f041a8cb..cba6843ece 100644 --- a/src/kernel/EngineImpl.hpp +++ b/src/kernel/EngineImpl.hpp @@ -3,16 +3,14 @@ /* 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 +#include #include #include #include namespace simgrid { namespace kernel { -namespace routing { -class NetZoneImpl; -class NetPoint; -} class EngineImpl { public: @@ -21,6 +19,8 @@ public: kernel::routing::NetZoneImpl* netRoot_ = nullptr; private: + std::map hosts_; + std::map storages_; std::unordered_map netpoints_; friend simgrid::s4u::Engine; };