16 lines
233 B
C++
16 lines
233 B
C++
#ifndef UTIL_UTIL_H
|
|
#define UTIL_UTIL_H
|
|
|
|
#include <string>
|
|
|
|
|
|
namespace PresenceDetection {
|
|
namespace Util {
|
|
|
|
std::string CreateRandomString(size_t length);
|
|
|
|
} // namespace Util
|
|
} // namespace PresenceDetection
|
|
|
|
#endif // UTIL_UTIL_H
|