diff options
author | HampusM <hampus@hampusmat.com> | 2022-03-23 19:41:31 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-13 17:56:57 +0200 |
commit | 486ca3846b46dc229e5807968578809766ec1991 (patch) | |
tree | 65a4b7a746d6305666af06f8a1975c76244085a7 /src/interfaces/generation_tracker.hpp | |
parent | b8e86ce397dc07320c02f6a5f592c7c6a4421c86 (diff) |
feat: implement generations & multithreading
Diffstat (limited to 'src/interfaces/generation_tracker.hpp')
-rw-r--r-- | src/interfaces/generation_tracker.hpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/interfaces/generation_tracker.hpp b/src/interfaces/generation_tracker.hpp new file mode 100644 index 0000000..135af00 --- /dev/null +++ b/src/interfaces/generation_tracker.hpp @@ -0,0 +1,18 @@ +#pragma once + +#include <cstdint> +#include <memory> + +class IGenerationTracker +{ +public: + virtual ~IGenerationTracker() noexcept = default; + + [[nodiscard]] virtual uint32_t get_current_generation() const noexcept = 0; + + [[nodiscard]] virtual bool get_is_paused() const noexcept = 0; + + virtual void set_is_paused(bool is_paused) noexcept = 0; +}; + +using IGenerationTrackerFactory = std::shared_ptr<IGenerationTracker> (*)(bool is_paused); |