mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
29 lines
586 B
C++
29 lines
586 B
C++
#include "twitchuser.h"
|
|
|
|
namespace chatterino {
|
|
namespace twitch {
|
|
TwitchUser::TwitchUser(const QString &username, const QString &oauthToken,
|
|
const QString &oauthClient)
|
|
: IrcUser2(username, username, username, "oauth:" + oauthToken)
|
|
{
|
|
_oauthClient = oauthClient;
|
|
_oauthToken = oauthToken;
|
|
}
|
|
|
|
const QString &TwitchUser::getOAuthClient() const
|
|
{
|
|
return _oauthClient;
|
|
}
|
|
|
|
const QString &TwitchUser::getOAuthToken() const
|
|
{
|
|
return _oauthToken;
|
|
}
|
|
|
|
bool TwitchUser::isAnon() const
|
|
{
|
|
return IrcUser2::getNickName().startsWith("justinfan");
|
|
}
|
|
}
|
|
}
|