This commit is contained in:
fourtf
2017-01-04 15:12:31 +01:00
parent 4716894027
commit 7a7b714e78
15 changed files with 437 additions and 18 deletions
+10
View File
@@ -0,0 +1,10 @@
#include "account.h"
const Account* Account::m_anon = new Account("justinfan123", "", "");
Account::Account(QString username, QString oauthToken, QString oauthClient)
{
m_oauthClient = oauthClient;
m_oauthToken = oauthToken;
m_username = username;
}