squawk/core/account.h

26 lines
373 B
C
Raw Normal View History

2019-03-29 14:54:34 +00:00
#ifndef CORE_ACCOUNT_H
#define CORE_ACCOUNT_H
#include <QtCore/QObject>
#include <qxmpp/QXmppClient.h>
namespace Core
{
class Account : public QObject
{
public:
Account(const QString& p_jid, const QString& p_password, QObject* parent = 0);
~Account();
private:
QString jid;
QString password;
QXmppClient client;
};
}
#endif // CORE_ACCOUNT_H