ppdnode/lib/uuid.h
2024-05-07 20:10:53 -04:00

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