LibTgBotPP
 All Classes Namespaces Files Functions Variables Typedefs Macros
json_encode.cc
Go to the documentation of this file.
1 #include "json_encode.h"
2 
3 std::string json_encode(std::map<std::string, std::string> parameters) {
4 
5  Json::Value jValues;
6  Json::StyledWriter w;
7 
8  for(std::map<std::string, std::string>::iterator it = parameters.begin(); it != parameters.end(); ++it) {
9  jValues[(*it).first] = (*it).second;
10  }
11 
12  return(w.write(jValues));
13 }
std::string json_encode(std::map< std::string, std::string > parameters)
Definition: json_encode.cc:3