#pragma once #include #include #include "discord/snowflake.hpp" #include "notifier.hpp" class Message; class Notifications { public: Notifications(); void CheckMessage(const Message &message); void WithdrawChannel(Snowflake channel_id); private: void NotifyMessageDM(const Message &message); void NotifyMessageGuild(const Message &message); [[nodiscard]] bool IsDND() const; Notifier m_notifier; std::map> m_chan_notifications; };