33#ifndef QGPGME_QGPGMEQUICKJOB_H
34#define QGPGME_QGPGMEQUICKJOB_H
38#include "threadedjobmixin.h"
64 const QDateTime &expires = QDateTime(),
65 const GpgME::Key &key = GpgME::Key(),
66 unsigned int flags = 0) Q_DECL_OVERRIDE;
67 void startAddUid(
const GpgME::Key &key,
const QString &uid) Q_DECL_OVERRIDE;
68 void startRevUid(
const GpgME::Key &key,
const QString &uid) Q_DECL_OVERRIDE;
70 const QDateTime &expires = QDateTime(),
71 unsigned int flags = 0) Q_DECL_OVERRIDE;
73 const std::vector<GpgME::UserID> &userIds = std::vector<GpgME::UserID>()) Q_DECL_OVERRIDE;
Definition qgpgmequickjob.h:52
void startAddUid(const GpgME::Key &key, const QString &uid) Q_DECL_OVERRIDE
Definition qgpgmequickjob.cpp:120
void startRevUid(const GpgME::Key &key, const QString &uid) Q_DECL_OVERRIDE
Definition qgpgmequickjob.cpp:125
void startCreate(const QString &uid, const char *algo, const QDateTime &expires=QDateTime(), const GpgME::Key &key=GpgME::Key(), unsigned int flags=0) Q_DECL_OVERRIDE
Definition qgpgmequickjob.cpp:110
void startRevokeSignature(const GpgME::Key &key, const GpgME::Key &signingKey, const std::vector< GpgME::UserID > &userIds=std::vector< GpgME::UserID >()) Q_DECL_OVERRIDE
Definition qgpgmequickjob.cpp:138
void startAddSubkey(const GpgME::Key &key, const char *algo, const QDateTime &expires=QDateTime(), unsigned int flags=0) Q_DECL_OVERRIDE
Definition qgpgmequickjob.cpp:130
Definition threadedjobmixin.h:125