diff options
Diffstat (limited to 'include/datetime/engine-mock.h')
-rw-r--r-- | include/datetime/engine-mock.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/datetime/engine-mock.h b/include/datetime/engine-mock.h index 4b25120..9fb0442 100644 --- a/include/datetime/engine-mock.h +++ b/include/datetime/engine-mock.h @@ -44,14 +44,17 @@ public: void get_appointments(const DateTime& /*begin*/, const DateTime& /*end*/, const Timezone& /*default_timezone*/, - std::function<void(const std::vector<Appointment>&)> appointment_func) { + std::function<void(const std::vector<Appointment>&)> appointment_func) override { appointment_func(m_appointments); } - core::Signal<>& changed() { + core::Signal<>& changed() override { return m_changed; } + void disable_ubuntu_alarm(const Appointment&) override { + } + private: core::Signal<> m_changed; std::vector<Appointment> m_appointments; |