Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
9bb98133498d311b48642e95342380245db38150
[simgrid.git] / src / mc / mc_forward.hpp
1 /* Copyright (c) 2007-2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 /** \file mc_forward.hpp
8  *
9  *  Forward definitions for MC types
10  */
11
12 #ifndef SIMGRID_MC_FORWARD_HPP
13 #define SIMGRID_MC_FORWARD_HPP
14
15 #define MC_OVERRIDE
16
17 namespace simgrid {
18 namespace mc {
19
20 class PageStore;
21 class ModelChecker;
22 class AddressSpace;
23 class Process;
24 class Snapshot;
25 class ObjectInformation;
26 class Type;
27 class Variable;
28 class Frame;
29
30 }
31 }
32
33 // TODO, try to get rid of the global ModelChecker variable
34 extern simgrid::mc::ModelChecker* mc_model_checker;
35
36 #endif