2017-04-14 20:28:55 -07:00
|
|
|
#ifndef __CONFIG_HPP
|
|
|
|
#define __CONFIG_HPP
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "json.hpp"
|
|
|
|
|
|
|
|
using nlohmann::json;
|
|
|
|
|
|
|
|
namespace cellar {
|
|
|
|
namespace config {
|
|
|
|
json get_default_config();
|
2017-07-05 14:39:48 -07:00
|
|
|
|
|
|
|
extern json global_config;
|
|
|
|
extern json compiled_config;
|
2017-04-14 20:28:55 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __CONFIG_HPP
|