├── .clang-format ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── basic_database.hpp ├── config.hpp ├── config.hpp.in ├── database.cpp ├── database.hpp ├── error.cpp ├── error.hpp ├── example └── main.cpp ├── generator.cpp ├── generator.hpp ├── hash.hpp ├── string_id.cpp └── string_id.hpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/string_id/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /bii/ 2 | *.*~ 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/string_id/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/string_id/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/string_id/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/string_id/HEAD/README.md -------------------------------------------------------------------------------- /basic_database.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/string_id/HEAD/basic_database.hpp -------------------------------------------------------------------------------- /config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/string_id/HEAD/config.hpp -------------------------------------------------------------------------------- /config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/string_id/HEAD/config.hpp.in -------------------------------------------------------------------------------- /database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/string_id/HEAD/database.cpp -------------------------------------------------------------------------------- /database.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/string_id/HEAD/database.hpp -------------------------------------------------------------------------------- /error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/string_id/HEAD/error.cpp -------------------------------------------------------------------------------- /error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/string_id/HEAD/error.hpp -------------------------------------------------------------------------------- /example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/string_id/HEAD/example/main.cpp -------------------------------------------------------------------------------- /generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/string_id/HEAD/generator.cpp -------------------------------------------------------------------------------- /generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/string_id/HEAD/generator.hpp -------------------------------------------------------------------------------- /hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/string_id/HEAD/hash.hpp -------------------------------------------------------------------------------- /string_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/string_id/HEAD/string_id.cpp -------------------------------------------------------------------------------- /string_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/string_id/HEAD/string_id.hpp --------------------------------------------------------------------------------