Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
WIP stop using const char* in C++ layers
[simgrid.git] / src / mc / mc_hash.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 #ifndef SIMGRID_MC_HASH_HPP
8 #define SIMGRID_MC_HASH_HPP
9
10 #include <cstdint>
11
12 #include <xbt/base.h>
13
14 #include "src/mc/mc_forward.hpp"
15
16 namespace simgrid {
17 namespace mc {
18
19 typedef std::uint64_t hash_type;
20
21 XBT_PRIVATE hash_type hash(simgrid::mc::Snapshot const& snapshot);
22
23 }
24 }
25
26 #endif