X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4340c977641036e7aa8ae5dcb69ccb3cac1df3c5..8695eb4cf63ff136fb246e39305887f3c7c334a8:/src/mc/ModelChecker.hpp diff --git a/src/mc/ModelChecker.hpp b/src/mc/ModelChecker.hpp index fe50841917..4ce444b0c3 100644 --- a/src/mc/ModelChecker.hpp +++ b/src/mc/ModelChecker.hpp @@ -3,16 +3,16 @@ /* 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. */ - + #ifndef SIMGRID_MC_MODEL_CHECKER_HPP #define SIMGRID_MC_MODEL_CHECKER_HPP #include #include -#include +#include -#include "mc_forward.h" +#include "mc_forward.hpp" #include "mc_process.h" #include "PageStore.hpp" #include "mc_protocol.h" @@ -32,14 +32,14 @@ class ModelChecker { // TODO, use std::unordered_set with heterogeneous comparison lookup (C++14) xbt_dict_t /* */ hostnames_; // This is the parent snapshot of the current state: - s_mc_pages_store_t page_store_; - s_mc_process_t process_; + PageStore page_store_; + Process process_; public: ModelChecker(ModelChecker const&) = delete; ModelChecker& operator=(ModelChecker const&) = delete; ModelChecker(pid_t pid, int socket); ~ModelChecker(); - s_mc_process_t& process() + Process& process() { return process_; }