13 lines
156 B
C
13 lines
156 B
C
|
#ifndef UUID_H
|
||
|
#define UUID_H
|
||
|
|
||
|
#include <random>
|
||
|
#include <sstream>
|
||
|
#include <string>
|
||
|
|
||
|
namespace uuid {
|
||
|
std::string generate_uuid_v4();
|
||
|
}
|
||
|
|
||
|
#endif // UUID_H
|