Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[simgrid.git] / src / kernel / EngineImpl.cpp
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 "src/kernel/EngineImpl.hpp"
7 #include "src/kernel/routing/AsImpl.hpp"
8 #include <simgrid/s4u/host.hpp>
9
10 namespace simgrid {
11 namespace kernel {
12
13 EngineImpl::EngineImpl()
14 {
15 }
16 EngineImpl::~EngineImpl()
17 {
18   delete rootAs_;
19 }
20 }
21 }