mirror of
https://github.com/Tencent/rapidjson.git
synced 2025-03-06 04:55:50 +01:00
parent
03f5de9d7e
commit
fc7cda78a9
@ -89,6 +89,9 @@ public:
|
||||
static const bool IsWriter = !IsReader;
|
||||
|
||||
private:
|
||||
JsonReader(const JsonReader&);
|
||||
JsonReader& operator=(const JsonReader&);
|
||||
|
||||
void Next();
|
||||
|
||||
// PIMPL
|
||||
@ -131,6 +134,9 @@ public:
|
||||
static const bool IsWriter = !IsReader;
|
||||
|
||||
private:
|
||||
JsonWriter(const JsonWriter&);
|
||||
JsonWriter& operator=(const JsonWriter&);
|
||||
|
||||
// PIMPL idiom
|
||||
void* mWriter; ///< JSON writer.
|
||||
void* mStream; ///< Stream buffer.
|
||||
|
Loading…
x
Reference in New Issue
Block a user