mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
23 lines
413 B
C++
23 lines
413 B
C++
#ifndef _Json_Json_h_
|
|
#define _Json_Json_h_
|
|
|
|
#include <Core/Core.h>
|
|
|
|
using namespace Upp;
|
|
/*
|
|
struct JsonMaker {
|
|
String text;
|
|
String indent;
|
|
|
|
JsonString& operator()(const String& key, const Value& value);
|
|
JsonString& operator<<(const Value& value);
|
|
JsonString& Object();
|
|
JsonString& EndObject();
|
|
JsonString& Array();
|
|
JsonString& EndArray();
|
|
|
|
JsonString(bool pretty);
|
|
};
|
|
*/
|
|
|
|
#endif
|