| 1 | /* |
|---|---|
| 2 | * IXUuid.h |
| 3 | * Author: Benjamin Sergeant |
| 4 | * Copyright (c) 2017 Machine Zone. All rights reserved. |
| 5 | */ |
| 6 | #pragma once |
| 7 | |
| 8 | #include <string> |
| 9 | |
| 10 | namespace ix |
| 11 | { |
| 12 | /** |
| 13 | * Generate a random uuid |
| 14 | */ |
| 15 | std::string uuid4(); |
| 16 | |
| 17 | } // namespace ix |
| 18 |