This repository has been archived on 2022-02-10. You can view files and clone it, but cannot push or open issues or pull requests.
fortuna/fortuna.h

20 lines
257 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;
};
}
#endif//FORTUNA_FORTUNA_H