├── .gitignore ├── LICENSE ├── Makefile ├── meson.build ├── src ├── uuidxx.cpp └── uuidxx.h ├── tests └── main.cpp └── uuidxx.vcxproj /.gitignore: -------------------------------------------------------------------------------- 1 | uuidtest 2 | uuidxx.o 3 | bin 4 | build 5 | Debug 6 | Release 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neosmart/uuidxx/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neosmart/uuidxx/HEAD/Makefile -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neosmart/uuidxx/HEAD/meson.build -------------------------------------------------------------------------------- /src/uuidxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neosmart/uuidxx/HEAD/src/uuidxx.cpp -------------------------------------------------------------------------------- /src/uuidxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neosmart/uuidxx/HEAD/src/uuidxx.h -------------------------------------------------------------------------------- /tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neosmart/uuidxx/HEAD/tests/main.cpp -------------------------------------------------------------------------------- /uuidxx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neosmart/uuidxx/HEAD/uuidxx.vcxproj --------------------------------------------------------------------------------