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 225952a7e2
All checks were successful
continuous-integration/drone/push Build is passing
fix(fortuna): add end-of-namespace comment
2021-11-19 20:59:12 +01:00

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