mirror-chatterino2/src/providers/twitch/ChatroomChannel.hpp

28 lines
669 B
C++
Raw Normal View History

2019-02-26 21:00:57 +01:00
#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;
virtual const QString &getDisplayName() const override;
2019-02-26 21:00:57 +01:00
QString chatroomOwnerId;
QString chatroomOwnerName;
2019-02-26 21:00:57 +01:00
friend class TwitchServer;
friend class TwitchMessageBuilder;
friend class IrcMessageHandler;
};
} // namespace chatterino