hce-node application  1.4.3
HCE Hierarchical Cluster Engine node application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
PocoJSONBuilder.hpp
Go to the documentation of this file.
1 
14 #ifndef POCOJSONBUILDER_HPP_
15 #define POCOJSONBUILDER_HPP_
16 
17 #include <Poco/JSON/Object.h>
18 #include <string>
19 
20 namespace HCE
21 {
22 namespace reduce_convertors
23 {
24 
26 public:
28  virtual ~PocoJSONBuilder();
29 
30  void add(const std::string& key, const Poco::Dynamic::Var& value);
31  std::string build();
32 
33 private:
34  Poco::JSON::Object::Ptr obj;
35 };
36 
37 }
38 }
39 
40 #endif