aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/status_updater.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/status_updater.hpp')
-rw-r--r--src/interfaces/status_updater.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/interfaces/status_updater.hpp b/src/interfaces/status_updater.hpp
index 2770d5e..e5081ef 100644
--- a/src/interfaces/status_updater.hpp
+++ b/src/interfaces/status_updater.hpp
@@ -4,6 +4,7 @@
#include "interfaces/statusline.hpp"
#include "interfaces/subscriber.hpp"
+#include "DI/factory.hpp"
#include "engine/data/vector2.hpp"
#include <memory>
@@ -15,6 +16,6 @@ public:
void update(const Vector2 &context) noexcept override = 0;
};
-using IStatusUpdaterFactory = std::shared_ptr<IStatusUpdater> (*)(
+using IStatusUpdaterFactory = Factory<std::unique_ptr<IStatusUpdater>(
const std::shared_ptr<IStatusLine> &statusline,
- const std::shared_ptr<IGenerationTracker> &generation_tracker);
+ const std::shared_ptr<IGenerationTracker> &generation_tracker)>;