Skip to content

1.目录结构

yksten edited this page Aug 7, 2021 · 1 revision
├── CMakeLists.txt
├── README.md
├── example
│   ├── exampleData.h              // demo结构体
│   └── main.cpp                   // demo
├── include
│   └── struct2x
│       ├── json
│       │   ├── GenericReader.h    // 辅助decode 
│       │   ├── GenericWriter.h    // 辅助encode
│       │   ├── decoder.h          // decode
│       │   └── encoder.h          // encode
│       ├── struct2x.h             // SERIALIZE
│       └── traits.h               // 萃取
└── thirdParty                     // 参考CJSON和RapidJSON的特定实现
    └── json
        ├── GenericReader.cpp
        └── GenericWriter.cpp
Clone this wiki locally