mirror-chatterino2/account.cpp

11 lines
264 B
C++
Raw Normal View History

2017-01-04 15:12:31 +01:00
#include "account.h"
2017-01-11 18:52:09 +01:00
const Account *Account::m_anon = new Account("justinfan123", "", "");
2017-01-04 15:12:31 +01:00
Account::Account(QString username, QString oauthToken, QString oauthClient)
{
m_oauthClient = oauthClient;
m_oauthToken = oauthToken;
m_username = username;
}