Skip to content

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.

Signature

constexpr UUID() noexcept;
UUID(const WChar* uuid);
UUID(const String& uuid);

Parameters

Name Description
uuid A string containing a UUID, e.g. c3f306bf-5f50-9986-cbc9-7e4fa7c362a8.

Exceptions

May throw a std::invalid_argument exception when the uuid is invalid.

Clone this wiki locally