Skip to content

Commit 006c88c

Browse files
committed
Aditions for nkolban#153
1 parent b600ac4 commit 006c88c

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

cpp_utils/JSON.cpp

+7
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
*/
77

88

9+
// See: https://github.com/DaveGamble/cJSON
10+
911
#include <string>
1012
#include <stdlib.h>
1113
#include "JSON.h"
@@ -202,6 +204,11 @@ JsonObject::JsonObject(cJSON* node) {
202204
m_node = node;
203205
} // JsonObject
204206

207+
JsonArray JsonObject::getArray(std::string name) {
208+
cJSON *node = cJSON_GetObjectItem(m_node, name.c_str());
209+
return JsonArray(node);
210+
}
211+
205212

206213
/**
207214
* @brief Get the named boolean value from the object.

cpp_utils/JSON.h

+7
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ class JsonArray {
4646
void addString(std::string value);
4747
std::string toString();
4848
std::size_t size();
49+
private:
50+
friend class JSON;
51+
friend class JsonObject;
4952
/**
5053
* @brief The underlying cJSON node.
5154
*/
@@ -59,6 +62,7 @@ class JsonArray {
5962
class JsonObject {
6063
public:
6164
JsonObject(cJSON* node);
65+
JsonArray getArray(std::string name);
6266
bool getBoolean(std::string name);
6367
double getDouble(std::string name);
6468
int getInt(std::string name);
@@ -74,6 +78,9 @@ class JsonObject {
7478
void setString(std::string name, std::string value);
7579
std::string toString();
7680

81+
private:
82+
friend class JSON;
83+
friend class JsonArray;
7784
/**
7885
* @brief The underlying cJSON node.
7986
*/

0 commit comments

Comments
 (0)