#pragma once #include "messages/Message.hpp" #include "singletons/helper/LoggingChannel.hpp" #include namespace chatterino { class PathManager; class LoggingManager { PathManager *pathManager = nullptr; public: LoggingManager() = default; ~LoggingManager() = delete; void initialize(); void addMessage(const QString &channelName, chatterino::MessagePtr message); private: std::map> loggingChannels; }; } // namespace chatterino