diff options
Diffstat (limited to 'src/interfaces/cursor.hpp')
-rw-r--r-- | src/interfaces/cursor.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interfaces/cursor.hpp b/src/interfaces/cursor.hpp index f6521cb..053ff40 100644 --- a/src/interfaces/cursor.hpp +++ b/src/interfaces/cursor.hpp @@ -35,9 +35,9 @@ public: virtual void show() noexcept = 0; - void subscribe(const Event &event, - const Subscriber &subscriber) noexcept override = 0; + void + subscribe(const Event &event, const Subscriber &subscriber) noexcept override = 0; - void notify_subscribers(const Event &event, - const Context &context) const noexcept override = 0; + void notify_subscribers(const Event &event, const Context &context) + const noexcept override = 0; }; |