You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
179 B

9 years ago
#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