1
0
Fork 0
forked from blue/squawk
This commit is contained in:
Blue 2019-03-29 17:54:34 +03:00
commit de36fe2a4e
15 changed files with 421 additions and 0 deletions

17
core/account.cpp Normal file
View file

@ -0,0 +1,17 @@
#include "account.h"
using namespace Core;
Account::Account(const QString& p_jid, const QString& p_password, QObject* parent):
QObject(parent),
jid(p_jid),
password(p_password),
client()
{
}
Account::~Account()
{
}