diff --git a/src/json_fwd.hpp b/src/json_fwd.hpp new file mode 100644 index 000000000..afe8a7deb --- /dev/null +++ b/src/json_fwd.hpp @@ -0,0 +1,30 @@ +#ifndef NLOHMANN_JSON_FWD_HPP +#define NLOHMANN_JSON_FWD_HPP + +#include +#include +#include +#include + +namespace nlohmann +{ + +template < + template class ObjectType, + template class ArrayType, + class StringType, + class BooleanType, + class NumberIntegerType, + class NumberUnsignedType, + class NumberFloatType, + template class AllocatorType + > +class basic_json; + +using json = basic_json; + +} // namespace nlohmann + +#endif // NLOHMANN_JSON_FWD_HPP +