Arkanjo 0.2
A tool for find code duplicated functions in codebases
Loading...
Searching...
No Matches
preprocessor.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <filesystem>
4#include <vector>
5#include <string>
6
7namespace fs = std::filesystem;
8
10private:
11 static constexpr const char* PATH_MESSAGE = "path of the current preprocess: ";
12 static constexpr const char* TIME_MESSAGE = "Finished time: ";
13
14protected:
15 static constexpr const char* CONFIG_PATH = "config.txt";
16
17public:
22 static void save_current_run_params(const fs::path& path);
23
27 static std::vector<std::string> read_current_run_params();
28};
static constexpr const char * CONFIG_PATH
Configuration file path.
static std::vector< std::string > read_current_run_params()
read preprocessing parameters runs
static void save_current_run_params(const fs::path &path)
Saves preprocessing parameters for future runs.