├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── examples └── serial_model.cpp ├── shine_serial.hpp └── shine_serial_vs_protobuf_benchmark ├── google_protobuf.cpp ├── model.proto └── shine_serial.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shineframe/shine_serial/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shineframe/shine_serial/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shineframe/shine_serial/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shineframe/shine_serial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shineframe/shine_serial/HEAD/README.md -------------------------------------------------------------------------------- /examples/serial_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shineframe/shine_serial/HEAD/examples/serial_model.cpp -------------------------------------------------------------------------------- /shine_serial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shineframe/shine_serial/HEAD/shine_serial.hpp -------------------------------------------------------------------------------- /shine_serial_vs_protobuf_benchmark/google_protobuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shineframe/shine_serial/HEAD/shine_serial_vs_protobuf_benchmark/google_protobuf.cpp -------------------------------------------------------------------------------- /shine_serial_vs_protobuf_benchmark/model.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shineframe/shine_serial/HEAD/shine_serial_vs_protobuf_benchmark/model.proto -------------------------------------------------------------------------------- /shine_serial_vs_protobuf_benchmark/shine_serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shineframe/shine_serial/HEAD/shine_serial_vs_protobuf_benchmark/shine_serial.cpp --------------------------------------------------------------------------------