File tree 2 files changed +14
-0
lines changed
2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 6
6
*/
7
7
8
8
9
+ // See: https://github.com/DaveGamble/cJSON
10
+
9
11
#include < string>
10
12
#include < stdlib.h>
11
13
#include " JSON.h"
@@ -202,6 +204,11 @@ JsonObject::JsonObject(cJSON* node) {
202
204
m_node = node;
203
205
} // JsonObject
204
206
207
+ JsonArray JsonObject::getArray (std::string name) {
208
+ cJSON *node = cJSON_GetObjectItem (m_node, name.c_str ());
209
+ return JsonArray (node);
210
+ }
211
+
205
212
206
213
/* *
207
214
* @brief Get the named boolean value from the object.
Original file line number Diff line number Diff line change @@ -46,6 +46,9 @@ class JsonArray {
46
46
void addString (std::string value);
47
47
std::string toString ();
48
48
std::size_t size ();
49
+ private:
50
+ friend class JSON ;
51
+ friend class JsonObject ;
49
52
/* *
50
53
* @brief The underlying cJSON node.
51
54
*/
@@ -59,6 +62,7 @@ class JsonArray {
59
62
class JsonObject {
60
63
public:
61
64
JsonObject (cJSON* node);
65
+ JsonArray getArray (std::string name);
62
66
bool getBoolean (std::string name);
63
67
double getDouble (std::string name);
64
68
int getInt (std::string name);
@@ -74,6 +78,9 @@ class JsonObject {
74
78
void setString (std::string name, std::string value);
75
79
std::string toString ();
76
80
81
+ private:
82
+ friend class JSON ;
83
+ friend class JsonArray ;
77
84
/* *
78
85
* @brief The underlying cJSON node.
79
86
*/
You can’t perform that action at this time.
0 commit comments