renamed "user" to "account"

This commit is contained in:
fourtf
2017-04-18 02:29:32 +02:00
parent 34b9057f7e
commit c2937eb7b3
15 changed files with 23 additions and 27 deletions
-28
View File
@@ -1,28 +0,0 @@
#ifndef ACCOUNT_H
#define ACCOUNT_H
#include "ircuser2.h"
#include <QString>
namespace chatterino {
namespace twitch {
class TwitchUser : public IrcUser2
{
public:
TwitchUser(const QString &username, const QString &oauthToken, const QString &oauthClient);
const QString &getOAuthToken() const;
const QString &getOAuthClient() const;
bool isAnon() const;
private:
QString _oauthClient;
QString _oauthToken;
};
}
}
#endif // ACCOUNT_H