mirror of
https://github.com/nlohmann/json.git
synced 2025-07-06 06:42:33 +03:00
overworked doxygen
This commit is contained in:
15
docs/examples/basic_json__object_t.cpp
Normal file
15
docs/examples/basic_json__object_t.cpp
Normal file
@ -0,0 +1,15 @@
|
||||
#include <json.hpp>
|
||||
|
||||
using namespace nlohmann;
|
||||
|
||||
int main()
|
||||
{
|
||||
// create an object_t value
|
||||
json::object_t value = { {"one", 1}, {"two", 2} };
|
||||
|
||||
// create a JSON object from the value
|
||||
json j(value);
|
||||
|
||||
// serialize the JSON object
|
||||
std::cout << j << '\n';
|
||||
}
|
Reference in New Issue
Block a user