helly25 fe2c15d388
Some tweaks:
* Make `json.h` an IWYU import header.
* Change `Reader::parse` to take its `document` parameter as `std::string_view`.
* Add `static void StreamWriterBuilder::updateDefaults(const Json::Value& settings);`
  * Allows to set the global configuration.
2025-05-27 19:06:31 +00:00

16 lines
567 B
C

// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
// Distributed under MIT license, or public domain if desired and
// recognized in your jurisdiction.
// See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
#ifndef JSON_JSON_H_INCLUDED
#define JSON_JSON_H_INCLUDED
#include "config.h" // IWYU pragma: export
#include "json_features.h" // IWYU pragma: export
#include "reader.h" // IWYU pragma: export
#include "value.h" // IWYU pragma: export
#include "writer.h" // IWYU pragma: export
#endif // JSON_JSON_H_INCLUDED