Files
voxel-raycaster/include/ConfigDB.h
mitchell hansen 7c86c60f9f Added EGL linking and useage for the linux cl_khr_gl_sharing
interaction. This still crashes on my machine but at least its getting
closer to working. Fixed some warnings and errors while compiling with
clang++
2017-09-24 17:07:51 -07:00

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:
};