mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-08-04 10:36:23 -04:00

* 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.
16 lines
567 B
C
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
|