mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
31 lines
768 B
C++
31 lines
768 B
C++
#pragma once
|
|
|
|
#include "channel.h"
|
|
#include "messages/messagebuilder.h"
|
|
|
|
#include <QString>
|
|
|
|
namespace chatterino {
|
|
namespace twitch {
|
|
|
|
class TwitchMessageBuilder : public messages::MessageBuilder
|
|
{
|
|
public:
|
|
TwitchMessageBuilder();
|
|
|
|
void appendTwitchBadges(const QStringList &badges);
|
|
|
|
QString messageId;
|
|
QString userName;
|
|
|
|
static messages::SharedMessage parse(const Communi::IrcPrivateMessage *ircMessage,
|
|
Channel *channel, const messages::MessageParseArgs &args);
|
|
|
|
// static bool sortTwitchEmotes(
|
|
// const std::pair<long int, messages::LazyLoadedImage *> &a,
|
|
// const std::pair<long int, messages::LazyLoadedImage *> &b);
|
|
};
|
|
|
|
} // namespace twitch
|
|
} // namespace chatterino
|