randomstringgenerator.h 167 B

1234567891011
  1. #pragma once
  2. #include <string>
  3. class RandomStringGenerator
  4. {
  5. public:
  6. RandomStringGenerator() = delete;
  7. static std::u8string getU8string(uint16_t length);
  8. };