interaction. This still crashes on my machine but at least its getting closer to working. Fixed some warnings and errors while compiling with clang++
18 lines
180 B
C++
18 lines
180 B
C++
#pragma once
|
|
#include <string>
|
|
#include <experimental/filesystem>
|
|
|
|
class ConfigDB {
|
|
|
|
public:
|
|
|
|
ConfigDB();
|
|
~ConfigDB();
|
|
|
|
bool init(std::string root_config_path);
|
|
|
|
private:
|
|
|
|
|
|
};
|