initial
This commit is contained in:
commit
de36fe2a4e
15 changed files with 421 additions and 0 deletions
25
core/account.h
Normal file
25
core/account.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
#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
|
Loading…
Add table
Add a link
Reference in a new issue