fortuna/fortuna.h

20 lines
278 B
C
Raw Normal View History

2021-11-10 23:55:58 +01:00
#ifndef FORTUNA_FORTUNA_H
#define FORTUNA_FORTUNA_H
#include "generator.h"
namespace fortuna {
class Fortuna {
public:
Fortuna();
~Fortuna();
auto random_data(unsigned int) -> void;
private:
generator::Generator gen;
};
} // namespace fortuna
2021-11-10 23:55:58 +01:00
#endif//FORTUNA_FORTUNA_H