forgot some header changes from last commit

This commit is contained in:
Nicholas O'Connor 2017-04-14 20:28:55 -07:00
parent fc814d1cb3
commit 34e048c535
2 changed files with 18 additions and 3 deletions

15
include/config.hpp Normal file
View File

@ -0,0 +1,15 @@
#ifndef __CONFIG_HPP
#define __CONFIG_HPP
#pragma once
#include "json.hpp"
using nlohmann::json;
namespace cellar {
namespace config {
json get_default_config();
}
}
#endif // __CONFIG_HPP

View File

@ -1,6 +1,6 @@
// vim: filetype=cpp : // vim: filetype=cpp :
#ifndef __INTERNAL_CORE_HPP #ifndef __INTERNAL_CONFIG_HPP
#define __INTERNAL_CORE_HPP #define __INTERNAL_CONFIG_HPP
#pragma once #pragma once
#include <map> #include <map>
@ -27,4 +27,4 @@ namespace cellar {
} }
} }
#endif // __INTERNAL_CORE_HPP #endif // __INTERNAL_CONFIG_HPP