mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
33 lines
686 B
C++
33 lines
686 B
C++
#pragma once
|
|
|
|
#include "signalvector.hpp"
|
|
#include "util/concurrentmap.hpp"
|
|
#include "util/emotemap.hpp"
|
|
|
|
#include <map>
|
|
|
|
namespace chatterino {
|
|
namespace providers {
|
|
namespace bttv {
|
|
|
|
class BTTVEmotes
|
|
{
|
|
public:
|
|
util::EmoteMap globalEmotes;
|
|
SignalVector<std::string> globalEmoteCodes;
|
|
|
|
util::EmoteMap channelEmotes;
|
|
std::map<std::string, SignalVector<std::string>> channelEmoteCodes;
|
|
|
|
void loadGlobalEmotes();
|
|
void loadChannelEmotes(const QString &channelName,
|
|
std::weak_ptr<util::EmoteMap> channelEmoteMap);
|
|
|
|
private:
|
|
util::EmoteMap channelEmoteCache;
|
|
};
|
|
|
|
} // namespace bttv
|
|
} // namespace providers
|
|
} // namespace chatterino
|