Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[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 AddressSpace;
19 class RemoteProcessMemory;
20 class Snapshot;
21 class ObjectInformation;
22 class Member;
23 class Type;
24 class Variable;
25 class Transition;
26 class Frame;
27
28 class Session;
29 class Exploration;
30 } // namespace simgrid::mc
31
32 #endif