Fledge
An open source edge computing platform for industrial users
json_utils.h
1 #ifndef _JSON_UTILS_H
2 #define _JSON_UTILS_H
3 /*
4  * Fledge utilities functions for handling JSON document
5  *
6  * Copyright (c) 2018 Dianomic Systems
7  *
8  * Released under the Apache 2.0 Licence
9  *
10  * Author: Stefano Simonelli
11  */
12 
13 bool JSONStringToVectorString(std::vector<std::string>& vectorString,
14  const std::string& JSONString,
15  const std::string& Key);
16 
17 std::string JSONescape(const std::string& subject);
18 std::string JSONunescape(const std::string& subject);
19 
20 #endif