aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/generation_tracker.hpp
blob: fcd2426781ba9acc5bc50857ac94b8f1a451df27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include <cstdint>
#include <memory>

// NOLINTNEXTLINE(cppcoreguidelines-special-member-functions)
class IGenerationTracker
{
public:
	virtual ~IGenerationTracker() noexcept = default;

	[[nodiscard]] virtual auto get_current_generation() const noexcept -> uint32_t = 0;

	[[nodiscard]] virtual auto get_is_paused() const noexcept -> bool = 0;

	virtual void set_is_paused(bool is_paused) noexcept = 0;
};

using IGenerationTrackerFactory = std::shared_ptr<IGenerationTracker> (*)(bool is_paused);