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

22 lines
414 B
C++
Raw Normal View History

2021-11-10 23:55:58 +01:00
#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