13 lines
174 B
C++
13 lines
174 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class WordListGenerator {
|
|
private:
|
|
static const std::string charset_;
|
|
|
|
public:
|
|
std::vector<std::string> generate();
|
|
};
|