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
surtur ea11801789
All checks were successful
continuous-integration/drone/push Build is passing
add fortuna class
2021-11-10 23:58:42 +01:00

20 lines
257 B
C++

#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