diff options
Diffstat (limited to 'lib/crypto/qolmaccount.h')
-rw-r--r-- | lib/crypto/qolmaccount.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/crypto/qolmaccount.h b/lib/crypto/qolmaccount.h index 54d8506c..1f94ab2b 100644 --- a/lib/crypto/qolmaccount.h +++ b/lib/crypto/qolmaccount.h @@ -23,10 +23,11 @@ class Connection; //! \code{.cpp} //! const auto olmAccount = new QOlmAccount(this); //! \endcode -class QOlmAccount +class QOlmAccount : public QObject { + Q_OBJECT public: - QOlmAccount(const QString &userId, const QString &deviceId); + QOlmAccount(const QString &userId, const QString &deviceId, QObject *parent = nullptr); ~QOlmAccount(); //! Creates a new instance of OlmAccount. During the instantiation @@ -98,6 +99,10 @@ public: // HACK do not use directly QOlmAccount(OlmAccount *account); OlmAccount *data(); + +Q_SIGNALS: + void needsSave() const; + private: OlmAccount *m_account = nullptr; // owning QString m_userId; |