diff options
Diffstat (limited to 'src/core/model/GpgKey.h')
-rw-r--r-- | src/core/model/GpgKey.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/model/GpgKey.h b/src/core/model/GpgKey.h index da92de8d..de2e8370 100644 --- a/src/core/model/GpgKey.h +++ b/src/core/model/GpgKey.h @@ -28,6 +28,8 @@ #pragma once +#include <utility> + #include "core/model/GpgAbstractKey.h" #include "core/model/GpgSubKey.h" #include "core/model/GpgUID.h" @@ -57,6 +59,13 @@ class GPGFRONTEND_CORE_EXPORT GpgKey : public GpgAbstractKey { /** * @brief Construct a new Gpg Key object * + * @param key + */ + explicit GpgKey(QSharedPointer<struct _gpgme_key> key_ref); + + /** + * @brief Construct a new Gpg Key object + * * @param k */ GpgKey(const GpgKey&); |