minor refactor

This commit is contained in:
MihailRis
2024-05-05 20:08:25 +03:00
parent 75e56ebd83
commit 7f8a86b740
35 changed files with 76 additions and 83 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifndef CODERS_TOML_HPP_
#define CODERS_TOML_HPP_
#include <string>
#include <vector>
#include <unordered_map>
#include "commons.h"
class SettingsHandler;
namespace toml {
std::string stringify(SettingsHandler& handler);
void parse(
SettingsHandler& handler,
const std::string& file,
const std::string& source
);
}
#endif // CODERS_TOML_HPP_