AnimEngine
All Classes Namespaces Functions
UUID.hpp
1 #pragma once
2 #ifndef KJY_UUID_HPP_
3 #define KJY_UUID_HPP_
4 #include <stdint.h>
5 #include <string>
6 
7 typedef uintmax_t uuid_t;
8 
9 uuid_t generate_uuid();
10 
11 std::string uuid_to_string(uuid_t uuid);
12 
13 #endif