├── CMakeLists.txt ├── License.txt ├── README.md ├── all.hpp ├── amsg.hpp ├── example ├── CMakeLists.txt ├── sfix │ ├── CMakeLists.txt │ └── main.cpp ├── size_of │ ├── CMakeLists.txt │ └── main.cpp └── smax │ ├── CMakeLists.txt │ └── main.cpp ├── test ├── CMakeLists.txt ├── main.cpp └── test_base.hpp └── zerocopy.hpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordoffox/amsg/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordoffox/amsg/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordoffox/amsg/HEAD/README.md -------------------------------------------------------------------------------- /all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordoffox/amsg/HEAD/all.hpp -------------------------------------------------------------------------------- /amsg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordoffox/amsg/HEAD/amsg.hpp -------------------------------------------------------------------------------- /example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordoffox/amsg/HEAD/example/CMakeLists.txt -------------------------------------------------------------------------------- /example/sfix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordoffox/amsg/HEAD/example/sfix/CMakeLists.txt -------------------------------------------------------------------------------- /example/sfix/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordoffox/amsg/HEAD/example/sfix/main.cpp -------------------------------------------------------------------------------- /example/size_of/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordoffox/amsg/HEAD/example/size_of/CMakeLists.txt -------------------------------------------------------------------------------- /example/size_of/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordoffox/amsg/HEAD/example/size_of/main.cpp -------------------------------------------------------------------------------- /example/smax/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordoffox/amsg/HEAD/example/smax/CMakeLists.txt -------------------------------------------------------------------------------- /example/smax/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordoffox/amsg/HEAD/example/smax/main.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordoffox/amsg/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordoffox/amsg/HEAD/test/main.cpp -------------------------------------------------------------------------------- /test/test_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordoffox/amsg/HEAD/test/test_base.hpp -------------------------------------------------------------------------------- /zerocopy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordoffox/amsg/HEAD/zerocopy.hpp --------------------------------------------------------------------------------