X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/07c12189c716ea527ddcf8f8b55983213dead2bf..2d75d1cbec1f1390f086522ccc8a0b3a4e645d89:/src/kernel/EngineImpl.hpp diff --git a/src/kernel/EngineImpl.hpp b/src/kernel/EngineImpl.hpp index c25063d629..4e2ef24bd5 100644 --- a/src/kernel/EngineImpl.hpp +++ b/src/kernel/EngineImpl.hpp @@ -1,20 +1,16 @@ -/* Copyright (c) 2016. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2016-2017. 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 NetZoneImpl; -class NetPoint; -} class EngineImpl { public: @@ -22,7 +18,8 @@ public: virtual ~EngineImpl(); kernel::routing::NetZoneImpl* netRoot_ = nullptr; -protected: +private: + std::map hosts_; std::unordered_map netpoints_; friend simgrid::s4u::Engine; };