Cell down alarm notification [Issue-Id: ODUHIGH-430]
[o-du/l2.git] / src / o1 / ves / JsonHelper.hpp
index 6509dda..441fd92 100644 (file)
@@ -39,7 +39,8 @@ class JsonHelper
                                   const char* value);
       static cJSON* addNodeToObject(cJSON * parent, \
                                   const char * nodeName, double value);
-
+      static cJSON* addNodeToObject(cJSON * parent, \
+                                  const char * nodeName, bool value);
       static void deleteNode(cJSON * node);
       static cJSON_bool addJsonNodeToObject(cJSON * parent, \
                              const char * nodeName, cJSON * node);
@@ -49,6 +50,9 @@ class JsonHelper
       static char *printUnformatted(cJSON * node);
       static char *print(cJSON * node);
       static const char *getError();
+      static cJSON* createArray();
+      static cJSON_bool addJsonNodeToArray(cJSON * array, cJSON* node);
+
 
 };