Name |
---|
UUIDUtils A namespace for UUID utility functions. |
// Copyright (c) 2022, Edgeware AB. All rights reserved.
#pragma once
#include <string>
namespace UUIDUtils {
std::string generateRandomUUID();
bool isValidUUIDString(const std::string& uuid);
} // namespace UUIDUtils
Updated on 2024-04-08 at 15:15:27 +0200