aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/subscriber.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/subscriber.hpp')
-rw-r--r--src/interfaces/subscriber.hpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/interfaces/subscriber.hpp b/src/interfaces/subscriber.hpp
deleted file mode 100644
index 942c1d5..0000000
--- a/src/interfaces/subscriber.hpp
+++ /dev/null
@@ -1,11 +0,0 @@
-#pragma once
-
-template <typename Context>
-// NOLINTNEXTLINE(cppcoreguidelines-special-member-functions)
-class ISubscriber
-{
-public:
- virtual ~ISubscriber() = default;
-
- virtual void update(const Context &context) noexcept = 0;
-};