Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
b9da6dfe040fc7c5dbd1f706347d0157be63d443
[simgrid.git] / src / mc / mc_forward.hpp
1 /* Copyright (c) 2007-2023. 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 /** @file mc_forward.hpp
7  *
8  *  Forward definitions for MC types
9  */
10
11 #ifndef SIMGRID_MC_FORWARD_HPP
12 #define SIMGRID_MC_FORWARD_HPP
13
14 namespace simgrid::mc {
15
16 class PageStore;
17 class ChunkedData;
18 class ModelChecker;
19 class AddressSpace;
20 class RemoteProcessMemory;
21 class Snapshot;
22 class ObjectInformation;
23 class Member;
24 class Type;
25 class Variable;
26 class Transition;
27 class Frame;
28 class ActorInformation;
29
30 class Session;
31 class Exploration;
32 } // namespace simgrid::mc
33
34 // TODO, try to get rid of the global ModelChecker variable
35 extern simgrid::mc::ModelChecker* mc_model_checker;
36
37 #endif