LibTgBotPP/src/json_encode.h
2016-05-03 09:17:56 +02:00

11 lines
179 B
C++

#ifndef __JSON_ENCODE_H__
#define __JSON_ENCODE_H__
#include <map>
#include <string>
#include <json/json.h>
std::string json_encode(std::map<std::string, std::string>);
#endif