X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a36e8044de323971221f5da46773d54e312d3b3c..6daf179640c4438bb442671e641d304acefe263e:/src/kernel/EngineImpl.hpp diff --git a/src/kernel/EngineImpl.hpp b/src/kernel/EngineImpl.hpp index 750cb62b99..58c0b63feb 100644 --- a/src/kernel/EngineImpl.hpp +++ b/src/kernel/EngineImpl.hpp @@ -1,24 +1,28 @@ -/* Copyright (c) 2016. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2016-2019. The SimGrid Team. All rights reserved. */ /* 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 +#include namespace simgrid { namespace kernel { -namespace routing { -class AsImpl; -} class EngineImpl { public: EngineImpl(); virtual ~EngineImpl(); - kernel::routing::AsImpl* rootAs_ = nullptr; + kernel::routing::NetZoneImpl* netzone_root_ = nullptr; -protected: +private: + std::map hosts_; + std::map links_; + std::map storages_; + std::unordered_map netpoints_; friend simgrid::s4u::Engine; }; }