20 lines
257 B
C
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
|