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

22 lines
414 B
C++

#include "fortuna.h"
#include "generator.h"
#ifndef FORTUNA_FORTUNA_CPP
#define FORTUNA_FORTUNA_CPP
namespace fortuna {
Fortuna::Fortuna(){
generator::Generator g{};
g.initialize_generator();
}
Fortuna::~Fortuna() = default;
auto Fortuna::random_data(unsigned int n_blocks) -> void {
// TODO(me)
// will one day return random data to the user
}
} // namespace fortuna
#endif//FORTUNA_FORTUNA_CPP