This commit is contained in:
Torsten (PC)
2026-01-14 14:36:57 +01:00
parent cd739fb52e
commit 1fe77c0905
21 changed files with 1267 additions and 0 deletions

14
src/config.h Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#include <string>
#include <map>
class Config
{
public:
Config(const std::string &filepath);
std::string get(const std::string &key) const;
private:
std::map<std::string, std::string> config_map;
void load(const std::string &filepath);
};