This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef UUID_H | |
#define UUID_H | |
#include <string> | |
#include <cstdlib> | |
//*Adapted from https://gist.github.com/ne-sachirou/882192 | |
//*std::rand() can be replaced with other algorithms as Xorshift for better perfomance | |
//*Random seed must be initialized by user |