962da00171
An optional parameter for dump() allows to set the character to use for indentation (default: space). In case a JSON value is serialized to an output stream, its fill character is used (and can be set with std::setfill).
20 lines
537 B
C++
20 lines
537 B
C++
#include "json.hpp"
|
|
#include <iomanip> // for std::setw
|
|
|
|
using json = nlohmann::json;
|
|
|
|
int main()
|
|
{
|
|
// create JSON values
|
|
json j_object = {{"one", 1}, {"two", 2}};
|
|
json j_array = {1, 2, 4, 8, 16};
|
|
|
|
// serialize without indentation
|
|
std::cout << j_object << "\n\n";
|
|
std::cout << j_array << "\n\n";
|
|
|
|
// serialize with indentation
|
|
std::cout << std::setw(4) << j_object << "\n\n";
|
|
std::cout << std::setw(2) << j_array << "\n\n";
|
|
std::cout << std::setw(1) << std::setfill('\t') << j_object << "\n\n";
|
|
}
|