11 lines
179 B
C++
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
|