MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / JsonString

Class JsonString

tests/autotester/json11.hpp:381–386  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

379};
380
381class JsonString final : public Value<Json::STRING, string> {
382 const string &string_value() const override { return m_value; }
383public:
384 explicit JsonString(const string &value) : Value(value) {}
385 explicit JsonString(string &&value) : Value(move(value)) {}
386};
387
388class JsonArray final : public Value<Json::ARRAY, Json::array> {
389 const Json::array &array_items() const override { return m_value; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected