mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
26 lines
578 B
C++
26 lines
578 B
C++
|
#pragma once
|
||
|
|
||
|
#include "TwitchChannel.hpp"
|
||
|
|
||
|
#include <QString>
|
||
|
#include <atomic>
|
||
|
|
||
|
namespace chatterino {
|
||
|
|
||
|
class ChatroomChannel : public TwitchChannel
|
||
|
{
|
||
|
protected:
|
||
|
explicit ChatroomChannel(const QString &channelName,
|
||
|
TwitchBadges &globalTwitchBadges,
|
||
|
BttvEmotes &globalBttv, FfzEmotes &globalFfz);
|
||
|
virtual void refreshChannelEmotes() override;
|
||
|
|
||
|
QString chatroomOwnerId;
|
||
|
|
||
|
friend class TwitchServer;
|
||
|
friend class TwitchMessageBuilder;
|
||
|
friend class IrcMessageHandler;
|
||
|
};
|
||
|
|
||
|
} // namespace chatterino
|