Some machinations on a config structure as well as a restructure on how

I do logging.
This commit is contained in:
MitchellHansen
2017-09-23 01:06:20 -07:00
parent 2f1adca75d
commit 86f1622090
14 changed files with 1490 additions and 398 deletions

19
include/ConfigDB.h Normal file
View File

@@ -0,0 +1,19 @@
#pragma once
#include <string>
#include <filesystem>
class ConfigDB {
public:
ConfigDB();
~ConfigDB();
bool init(std::string root_config_path);
private:
};