mirror of
https://git.gfz-potsdam.de/naaice/poet.git
synced 2025-12-16 04:48:23 +01:00
10 lines
288 B
C++
10 lines
288 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include "Datatypes.hpp"
|
|
|
|
|
|
int write_checkpoint(const std::string &dir_path, const std::string &file_name, struct Checkpoint_s &&checkpoint);
|
|
|
|
int read_checkpoint(const std::string &dir_path, const std::string &file_name, struct Checkpoint_s &checkpoint);
|