CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.

serialize 0.0.2

serialize 0.0.2

TestsTested
LangLanguage C++C++
License MIT
ReleasedLast Release Sep 2015

Maintained by liaogang.



serialize 0.0.2

  • By
  • liaogang

serialize tool for c/c++ basic object types, ie. int ,char ,string,time_t...

Some functions that overload operation '>>' and '<<' ,make it simple to write or read from 'FILE'.

FILE *file = fopen("/test.txt", "w"); int i = 1; char c = 'd'; string str = "test_string";

// write those to the file file << i << c << str;

// read value from file file >> i >> c >> str;

Installation

pod 'serialize'

Authors

liaogang

License

MIT