rest_rpc
rest_rpc copied to clipboard
是否支持引用方式传参?
类似如下:
//client
std::string info
client.call
//server int get_info(std::string & info) { info = "hello"; return info.length(); }
非常感谢!