summaryrefslogtreecommitdiff
path: root/src/notifications/notifications.hpp
blob: fb71349c6ee384182bad296aada8e0f92c446f56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
};