diff options
Diffstat (limited to 'framework/domain/accountscontroller.h')
-rw-r--r-- | framework/domain/accountscontroller.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/framework/domain/accountscontroller.h b/framework/domain/accountscontroller.h index 9d98de71..a4421de8 100644 --- a/framework/domain/accountscontroller.h +++ b/framework/domain/accountscontroller.h | |||
@@ -21,23 +21,13 @@ | |||
21 | 21 | ||
22 | #include <QObject> | 22 | #include <QObject> |
23 | #include <QString> | 23 | #include <QString> |
24 | #include <QStringList> | ||
25 | #include <QVariant> | ||
26 | 24 | ||
27 | class AccountsController : public QObject | 25 | class AccountsController : public QObject |
28 | { | 26 | { |
29 | Q_OBJECT | 27 | Q_OBJECT |
30 | Q_PROPERTY (QStringList accounts MEMBER mAccounts NOTIFY accountsChanged) | ||
31 | |||
32 | public: | 28 | public: |
33 | explicit AccountsController(QObject *parent = Q_NULLPTR); | 29 | explicit AccountsController(QObject *parent = Q_NULLPTR); |
34 | 30 | ||
35 | signals: | ||
36 | void accountsChanged(); | ||
37 | |||
38 | public slots: | 31 | public slots: |
39 | void createAccount(const QString &accountId); | 32 | void createAccount(const QString &accountId); |
40 | |||
41 | private: | ||
42 | QStringList mAccounts; | ||
43 | }; | 33 | }; |