GA::kit v0.3
G&A's in-house C++ application framework
Loading...
Searching...
No Matches
uuid.h
Go to the documentation of this file.
1#pragma once
3
4// universally unique identifiers (aka guid - globally unique id)
5// https://en.wikipedia.org/wiki/Universally_unique_identifier
6// 128-bit ids, in string hex format: "7bcd757f-5b10-4f9b-af69-1a1f226f3b3e"
7
8namespace ga {
9
10using Uuid = xg::Guid; // cross-platform uuid class
11inline Uuid newUuid()
12{
13 return xg::newGuid();
14}
15} // namespace ga
Definition: color.h:9
xg::Guid Uuid
Definition: uuid.h:10
Uuid newUuid()
Definition: uuid.h:11