FlexELA
Loading...
Searching...
No Matches
src
checkpoint
checkpoint.h
1
#ifndef CHECKPOINT_H
2
#define CHECKPOINT_H
3
4
#include <cstdint>
5
#include <fstream>
6
#include <stdexcept>
7
#include <string>
8
9
#include "../domain/domain.h"
10
11
namespace
checkpoint {
12
constexpr
std::uint8_t CURRENT_CHECKPOINT_VERSION_NUMBER = 1;
13
14
void
create(
const
char
* filename,
const
domain::Domain
& dom);
15
16
void
load(
const
char
* filename,
const
domain::Domain
& dom);
17
}
// namespace checkpoint
18
19
#endif
domain::Domain
A wrapper for global ELA data.
Definition
domain.h:43
Declan B. Gaylo
© 2024. Documentation generated with
doxygen
.
Source Code