diff options
Diffstat (limited to 'src/notifications/notifications.hpp')
-rw-r--r-- | src/notifications/notifications.hpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/notifications/notifications.hpp b/src/notifications/notifications.hpp new file mode 100644 index 0000000..fb71349 --- /dev/null +++ b/src/notifications/notifications.hpp @@ -0,0 +1,18 @@ +#pragma once +#include "notifier.hpp" + +class Message; + +class Notifications { +public: + Notifications(); + + void CheckMessage(const Message &message); + +private: + void NotifyMessage(const Message &message); + + [[nodiscard]] bool IsDND() const; + + Notifier m_notifier; +}; |