rename #2
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
#pragma once
|
||||
|
||||
#include "messages/message.hpp"
|
||||
#include "singletons/helper/loggingchannel.hpp"
|
||||
|
||||
#include <memory>
|
||||
|
||||
namespace chatterino {
|
||||
namespace singletons {
|
||||
class PathManager;
|
||||
|
||||
class LoggingManager
|
||||
{
|
||||
PathManager *pathManager = nullptr;
|
||||
|
||||
public:
|
||||
LoggingManager() = default;
|
||||
|
||||
~LoggingManager() = delete;
|
||||
|
||||
void initialize();
|
||||
|
||||
void addMessage(const QString &channelName, messages::MessagePtr message);
|
||||
|
||||
private:
|
||||
std::map<QString, std::unique_ptr<LoggingChannel>> loggingChannels;
|
||||
};
|
||||
|
||||
} // namespace singletons
|
||||
} // namespace chatterino
|
||||
Reference in New Issue
Block a user