shine_serial
shine_serial copied to clipboard
高性能序列化库,一行代码即可完成C++原生结构序列化/反序列化的工作,媲美google protocol buffer
Results
1
shine_serial issues
Sort by
recently updated
recently updated
newest added
class BenchmarkMsg { public: uint8_t number{}; std::vector arr; BenchmarkMsg(int n); SHINE_SERIAL(BenchmarkMsg, number, arr); }; BenchmarkMsg::BenchmarkMsg(int n) : number(n) { for (int i = 0; i < 3; ++i) { arr.push_back(n);...