4 "summary": "serialize tool for c/c++ basic object types, ie. int ,char ,string,time_t...",
5 "description": "\t\t\t\t Some functions that overload operation '>>' and '<<' ,make it simple\tto write or read from 'FILE'.\t\t\n\n\t\t\t\t FILE *file = fopen(\"/test.txt\", \"w\");\n\t\t\t\t int i = 1;\n\t\t\t\t char c = 'd';\n\t\t\t\t string str = \"test_string\";\n\n\t\t\t\t // write those to the file\n\t\t\t\t file << i << c << str;\n\t\t\t\t\t\n\t\t\t\t // read value from file\n\t\t\t\t file >> i >> c >> str;\n\n",
6 "homepage": "https://github.com/liaogang/serialize.git",
9 "liaogang": "ynwlgh@icloud.com"
15 "git": "https://github.com/liaogang/serialize.git",
18 "source_files": "*.{h,cpp}",
19 "public_header_files": "*.h"