Closed aitormoreno closed 6 years ago
Added a simple UUID version 4 generator.
Uuid uuid = Uuid::generate();
that gets an Uuid in its raw binary representation. Usable as a key in a Map.
This convertis it to a String in the usual hex format:
String uuid = Uuid::generate();
Boost provides a UUID generator method
It would be interesting to add a cross platform UUID generator to ASL too.