Horizon
Loading...
Searching...
No Matches
installation_uuid.hpp
1#include "util/uuid.hpp"
2
3namespace horizon {
4class InstallationUUID {
5public:
6 static UUID get();
7
8private:
9 InstallationUUID();
10
11 UUID uuid;
12};
13} // namespace horizon
This class encapsulates a UUID and allows it to be uses as a value type.
Definition uuid.hpp:16