14 lines
165 B
C++
14 lines
165 B
C++
#ifndef RANDOM_H
|
|
#define RANDOM_H
|
|
|
|
#include <string>
|
|
|
|
|
|
namespace Random {
|
|
|
|
std::string CreateRandomString(size_t length);
|
|
|
|
} // namespace Random
|
|
|
|
#endif // RANDOM_H
|