X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a9a81240ced422d9b1ed18059a925702b523c103..a0d47b6eaf07218a602ed6606da925fbd3629909:/src/mc/mc_forward.hpp diff --git a/src/mc/mc_forward.hpp b/src/mc/mc_forward.hpp index 551bee4fdf..6922bd77f6 100644 --- a/src/mc/mc_forward.hpp +++ b/src/mc/mc_forward.hpp @@ -1,10 +1,9 @@ -/* Copyright (c) 2007-2014. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2007-2023. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -/** \file mc_forward.hpp +/** @file mc_forward.hpp * * Forward definitions for MC types */ @@ -12,33 +11,22 @@ #ifndef SIMGRID_MC_FORWARD_HPP #define SIMGRID_MC_FORWARD_HPP -#ifndef __has_feature - #define MC_OVERRIDE -#else - #if __has_feature(cxx_override_control) - #define MC_OVERRIDE override - #else - #define MC_OVERRIDE - #endif -#endif - -namespace simgrid { -namespace mc { +namespace simgrid::mc { class PageStore; -class ModelChecker; +class ChunkedData; class AddressSpace; -class Process; +class RemoteProcessMemory; class Snapshot; class ObjectInformation; +class Member; class Type; class Variable; +class Transition; class Frame; -} -} - -// TODO, try to get rid of the global ModelChecker variable -extern simgrid::mc::ModelChecker* mc_model_checker; +class Session; +class Exploration; +} // namespace simgrid::mc #endif