feat[protocol]: 支持C++序列化协议

This commit is contained in:
jaysunxiao
2022-05-15 21:59:02 +08:00
parent 08d1c2eae2
commit 6a8aa811a0
15 changed files with 3046 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#include "test/list_test.h"
#include "test/byte_buffer_test.h"
#include "test/serialization_test.h"
#include "test/speed_test.h"
using namespace zfoo;
using namespace std;
int main() {
list_test::list_all_test();
byte_buffer_test::byte_buffer_all_test();
serialization_test::protocol_all_test();
speed_test::parseObject();
speed_test::singleThreadBenchmarks();
return 0;
}