diff options
| author | Linus Jahn <lnj@kaidan.im> | 2021-09-30 17:54:16 +0200 |
|---|---|---|
| committer | Linus Jahn <lnj@kaidan.im> | 2021-09-30 18:24:39 +0200 |
| commit | de05cc70ea531c1188749d5a6e75db82e6881e83 (patch) | |
| tree | f46621d497e3858eab9b503fe99713de689b655c /src/client | |
| parent | 1d6c54d21dd2287d6b1f13d97984e45d653908dd (diff) | |
| download | qxmpp-de05cc70ea531c1188749d5a6e75db82e6881e83.tar.gz | |
TrustStorage: Add virtual dtor
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/QXmppTrustStorage.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/QXmppTrustStorage.h b/src/client/QXmppTrustStorage.h index 2b2dc521..a18b1362 100644 --- a/src/client/QXmppTrustStorage.h +++ b/src/client/QXmppTrustStorage.h @@ -55,6 +55,8 @@ public: }; Q_DECLARE_FLAGS(TrustLevels, TrustLevel) + virtual ~QXmppTrustStorage() = default; + virtual QFuture<void> setSecurityPolicies(const QString &encryption = {}, SecurityPolicy securityPolicy = SecurityPolicy::NoSecurityPolicy) = 0; virtual QFuture<SecurityPolicy> securityPolicy(const QString &encryption) = 0; |
