#include "atm_db.h" #include AtmDb::AtmDb(const QString &jid, const JidDb &db) : TrustDb(jid, db) {} QXmppTask AtmDb::addKeysForPostponedTrustDecisions( const QString &encryption, const QByteArray &senderKeyId, const QList &keyOwners) { return QXmpp::Private::makeReadyTask(); } QXmppTask AtmDb::removeKeysForPostponedTrustDecisions( const QString &encryption, const QList &keyIdsForAuthentication, const QList &keyIdsForDistrusting) { return QXmpp::Private::makeReadyTask(); } QXmppTask AtmDb::removeKeysForPostponedTrustDecisions( const QString &encryption, const QList &senderKeyIds) { return QXmpp::Private::makeReadyTask(); } QXmppTask AtmDb::removeKeysForPostponedTrustDecisions( const QString &encryption) { return QXmpp::Private::makeReadyTask(); } QXmppTask>> AtmDb::keysForPostponedTrustDecisions(const QString &encryption, const QList &senderKeyIds) { return QXmpp::Private::makeReadyTask( QHash>()); }