Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use boost instead of xbt in Vivaldi
[simgrid.git] / src / kernel / EngineImpl.hpp
1 /* Copyright (c) 2016. 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/forward.hpp>
7 #include <xbt/dict.h>
8
9 namespace simgrid {
10 namespace kernel {
11 namespace routing {
12 class AsImpl;
13 }
14
15 class EngineImpl {
16 public:
17   EngineImpl();
18   virtual ~EngineImpl();
19   kernel::routing::AsImpl* rootAs_ = nullptr;
20
21 protected:
22   friend simgrid::s4u::Engine;
23 };
24 }
25 }