Inja 3.5.0
A Template Engine for Modern C++
Loading...
Searching...
No Matches
json.hpp
1#ifndef INCLUDE_INJA_JSON_HPP_
2#define INCLUDE_INJA_JSON_HPP_
3
4#include <nlohmann/json.hpp>
5
6namespace inja {
7#ifndef INJA_DATA_TYPE
8using json = nlohmann::json;
9#else
10using json = INJA_DATA_TYPE;
11#endif
12} // namespace inja
13
14#endif // INCLUDE_INJA_JSON_HPP_