temp stuff

This commit is contained in:
apa420
2018-08-12 15:29:40 +02:00
parent 2de99ca9f5
commit 54166ec130
8 changed files with 185 additions and 50 deletions
+8 -1
View File
@@ -3,17 +3,23 @@
#include "Application.hpp"
#include "common/Singleton.hpp"
#include <mutex>
//#include <mutex>
namespace chatterino {
class Toasts final : public Singleton
{
public:
void sendChannelNotification(const QString &channelName, int &platform);
bool isEnabled(const QString &channelName);
/*
Toasts();
virtual void initialize(Settings &settings, Paths &paths) override final;
*/
private:
void sendWindowsNotification(const QString &channelName, int &platform);
/*
void updateLiveChannels(const QString &channelName);
void removeFromLiveChannels(const QString &channelName);
@@ -24,5 +30,6 @@ private:
void sendWindowsNotification(const QString &channelName);
std::vector<QString> liveChannels;
std::mutex mutex_;
*/
};
} // namespace chatterino