| 258 | |
| 259 | |
| 260 | void CicadaJSONItem::addArray(const std::string &name, CicadaJSONArray &array) |
| 261 | { |
| 262 | if (mJSON) { |
| 263 | cJSON_AddItemToObject(mJSON, name.c_str(), array.getJSONCopy()); |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | |
| 268 | const cJSON *CicadaJSONItem::getJSON() |
no test coverage detected