forked from blue/squawk
37 lines
850 B
C
37 lines
850 B
C
|
#ifndef MODELS_ACCOUNT_H
|
||
|
#define MODELS_ACCOUNT_H
|
||
|
|
||
|
#include "item.h"
|
||
|
|
||
|
namespace Models {
|
||
|
class Account : public Item {
|
||
|
public:
|
||
|
explicit Account(const QMap<QString, QVariant> &data, Item *parentItem = 0);
|
||
|
~Account();
|
||
|
|
||
|
void setState(int p_state);
|
||
|
int getState() const;
|
||
|
|
||
|
void setLogin(const QString& p_login);
|
||
|
QString getLogin() const;
|
||
|
|
||
|
void setServer(const QString& p_server);
|
||
|
QString getServer() const;
|
||
|
|
||
|
void setPassword(const QString& p_password);
|
||
|
QString getPassword() const;
|
||
|
|
||
|
QVariant data(int column) const override;
|
||
|
int columnCount() const override;
|
||
|
|
||
|
private:
|
||
|
QString login;
|
||
|
QString password;
|
||
|
QString server;
|
||
|
int state;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // MODELS_ACCOUNT_H
|