generated from trianta/cpp-unity-template
14 lines
230 B
C++
14 lines
230 B
C++
|
#ifndef GENERATOR_HPP
|
||
|
#define GENERATOR_HPP
|
||
|
|
||
|
struct Generator {
|
||
|
public:
|
||
|
Generator(void);
|
||
|
void SetArguments(int argc, char* argv[]);
|
||
|
private:
|
||
|
int prefixLength = 0;
|
||
|
int outputLength = 0;
|
||
|
};
|
||
|
|
||
|
#endif // !GENERATOR_HPP
|