Generation

generate functionMon, 27 Feb 2023

Please define json_to_book(json) function

#include <json/json.h> json_to_book(json) { Json::Reader reader; Json::Value data; reader.parse(json, data); Book book; book.id = data["id"].asUInt(); book.title = data["title"].asString(); return book; }

Questions about programming?Chat with your personal AI assistant