aboutsummaryrefslogtreecommitdiff
path: root/src/randomization/seed_generator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/randomization/seed_generator.hpp')
-rw-r--r--src/randomization/seed_generator.hpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/randomization/seed_generator.hpp b/src/randomization/seed_generator.hpp
new file mode 100644
index 0000000..238fdbe
--- /dev/null
+++ b/src/randomization/seed_generator.hpp
@@ -0,0 +1,17 @@
+#pragma once
+
+#include "interfaces/randomization.hpp"
+
+#include <memory>
+#include <random>
+
+class SeedGenerator : public ISeedGenerator
+{
+public:
+ explicit SeedGenerator(const std::shared_ptr<std::random_device> &random_device);
+
+ [[nodiscard]] unsigned int random_seed() const override;
+
+private:
+ const std::shared_ptr<std::random_device> &_random_device;
+};