| 1234567891011121314151617181920212223242526 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- #pragma once
- #include "BsCorePrerequisites.h"
- namespace bs
- {
- /** @addtogroup Utility-Core
- * @{
- */
- /**
- * Utility class for generating universally unique identifiers.
- *
- * @note Thread safe.
- */
- class BS_CORE_EXPORT UUIDGenerator
- {
- public:
- /** Generate a new random universally unique identifier. */
- static String generateRandom();
- };
- /** @} */
- }
|