diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2024-03-16 03:55:57 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2024-03-16 11:50:39 +0100 |
commit | aef9617d1ec7f73a394ed4bb43b4436e27225176 (patch) | |
tree | cd34e86e42c22b8ab3f8c93b0098645fcce9acca /src/encryption/DeviceVerificationFlow.h | |
parent | Include moc files for a tiny speedup on incremental builds (diff) | |
download | nheko-aef9617d1ec7f73a394ed4bb43b4436e27225176.tar.xz |
Make a few headers forward declarations
Diffstat (limited to 'src/encryption/DeviceVerificationFlow.h')
-rw-r--r-- | src/encryption/DeviceVerificationFlow.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/encryption/DeviceVerificationFlow.h b/src/encryption/DeviceVerificationFlow.h index 6f8f413e..f78f0dbd 100644 --- a/src/encryption/DeviceVerificationFlow.h +++ b/src/encryption/DeviceVerificationFlow.h @@ -5,13 +5,11 @@ #pragma once #include <QObject> +#include <QQmlEngine> -#include <mtx/responses/crypto.hpp> #include <mtxclient/crypto/client.hpp> #include "CacheCryptoStructs.h" -#include "Logging.h" -#include "MatrixClient.h" class QTimer; class TimelineModel; @@ -152,8 +150,6 @@ public: bool isSelfVerification() const; bool isMultiDeviceVerification() const { return deviceIds.size() > 1; } - void callback_fn(const UserKeyCache &res, mtx::http::RequestErr err, std::string user_id); - public slots: //! unverifies a device void unverify(); |