├── .gitignore ├── CMakeLists.txt ├── README.md ├── main.cpp └── src ├── CMakeLists.txt ├── segment.cpp └── segment.h /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vojirt/segment/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vojirt/segment/HEAD/README.md -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vojirt/segment/HEAD/main.cpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vojirt/segment/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vojirt/segment/HEAD/src/segment.cpp -------------------------------------------------------------------------------- /src/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vojirt/segment/HEAD/src/segment.h --------------------------------------------------------------------------------