idol
A C++ Framework for Optimization
Loading...
Searching...
No Matches
uuid.h
1//
2// Created by henri on 21.10.24.
3//
4
5#ifndef IDOL_UUID_H
6#define IDOL_UUID_H
7
8#include <string>
9#include <random>
10#include <sstream>
11
12namespace idol {
13 std::string generate_uuid_v4();
14}
15
16#endif //IDOL_UUID_H