squawk/core/account.cpp

18 lines
236 B
C++
Raw Normal View History

2019-03-29 14:54:34 +00:00
#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()
{
}