Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Remove the mc_smx_process_info typedefs
[simgrid.git] / src / mc / mc_forward.hpp
1 /* Copyright (c) 2007-2015. 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 namespace simgrid {
16 namespace mc {
17
18 class PageStore;
19 class ChunkedData;
20 class ModelChecker;
21 class AddressSpace;
22 class Process;
23 class Snapshot;
24 class ObjectInformation;
25 class Member;
26 class Type;
27 class Variable;
28 class Frame;
29 class SimixProcessInformation;
30
31 }
32 }
33
34 // TODO, try to get rid of the global ModelChecker variable
35 extern simgrid::mc::ModelChecker* mc_model_checker;
36
37 #endif