CmUUID.h 340 B

123456789101112131415161718
  1. #pragma once
  2. #include "CmPrerequisitesUtil.h"
  3. namespace BansheeEngine
  4. {
  5. /**
  6. * @brief Utility class for generating universally unique identifiers.
  7. */
  8. class CM_UTILITY_EXPORT UUIDGenerator
  9. {
  10. public:
  11. /**
  12. * @brief Generate a new random universally unique identifier.
  13. */
  14. static String generateRandom();
  15. };
  16. }