forked from blue/squawk
initial
This commit is contained in:
commit
de36fe2a4e
15 changed files with 421 additions and 0 deletions
17
core/account.cpp
Normal file
17
core/account.cpp
Normal 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()
|
||||
{
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue