Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / kernel / EngineImpl.hpp
1 /* Copyright (c) 2016-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include <simgrid/s4u/NetZone.hpp>
7 #include <simgrid/s4u/forward.hpp>
8 #include <string>
9 #include <unordered_map>
10
11 namespace simgrid {
12 namespace kernel {
13
14 class EngineImpl {
15 public:
16   EngineImpl();
17   virtual ~EngineImpl();
18   kernel::routing::NetZoneImpl* netRoot_ = nullptr;
19
20 private:
21   std::unordered_map<std::string, simgrid::kernel::routing::NetPoint*> netpoints_;
22   friend simgrid::s4u::Engine;
23 };
24 }
25 }