ppap4lmp  0.7.2
json.h
Go to the documentation of this file.
1 
9 #ifndef ALIAS_JSON_H
10 #define ALIAS_JSON_H
11 
12 #include <nlohmann/json.hpp>
13 
22 using Json = nlohmann::json;
23 
24 #ifdef ALIAS_PYBIND_H
25 #include <alias/pybind_json.h>
26 #endif
27 
28 #endif
To bind Json to Python, a custom type caster of pybind11* is required.
nlohmann::json Json
Json is an alias for nlohmann::json.
Definition: json.h:22