#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