-
Notifications
You must be signed in to change notification settings - Fork 23
QuantumGate::UUID::UUID
Karel Donk edited this page Oct 22, 2018
·
3 revisions
Constructs a QuantumGate::UUID object. The default constructor creates an empty UUID while the overload accepting a string tries to create a UUID based on the string.
constexpr UUID() noexcept;UUID(const WChar* uuid);UUID(const String& uuid);| Name | Description |
|---|---|
uuid |
A string containing a UUID, e.g. c3f306bf-5f50-9986-cbc9-7e4fa7c362a8. |
May throw a std::invalid_argument exception when the uuid is invalid.