BeeeOn Gateway  v2020.3.1-2-g6f737dc
Platform to interconnect the IoT world
JsonUtil.h
1 #pragma once
2 
3 #include <cmath>
4 #include <string>
5 
6 #include <Poco/JSON/JSON.h>
7 #include <Poco/JSON/Parser.h>
8 
9 namespace BeeeOn {
10 
11 class JsonUtil {
12 public:
13  /*
14  * It parses message and return JSON Object.
15  * @param &data JSON message string
16  * @return JSON Object
17  */
18  static Poco::JSON::Object::Ptr parse(const std::string &data);
19 };
20 
21 }
Definition: JsonUtil.h:11