20 lines
321 B
C++
Executable File
20 lines
321 B
C++
Executable File
#ifndef YP_LIB_TOOLS_H
|
|
#define YP_LIB_TOOLS_H
|
|
|
|
#include <string>
|
|
|
|
namespace Yc {
|
|
namespace Lib {
|
|
|
|
class Tools
|
|
{
|
|
public:
|
|
Tools();
|
|
static std::string generateRandomString(size_t length = 16);
|
|
};
|
|
|
|
} // namespace Lib
|
|
} // namespace Yp
|
|
|
|
#endif // YP_LIB_TOOLS_H
|