You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
353 B
14 lines
353 B
#include <iostream>
|
|
#include <nlohmann/json.hpp>
|
|
|
|
// possible use case: use NLOHMANN_JSON_NAMESPACE instead of nlohmann
|
|
using json = NLOHMANN_JSON_NAMESPACE::json;
|
|
|
|
// macro needed to output the NLOHMANN_JSON_NAMESPACE as string literal
|
|
#define Q(x) #x
|
|
#define QUOTE(x) Q(x)
|
|
|
|
int main()
|
|
{
|
|
std::cout << QUOTE(NLOHMANN_JSON_NAMESPACE) << std::endl;
|
|
}
|
|
|