diff options
Diffstat (limited to 'src/core/model/GpgSubKey.h')
-rw-r--r-- | src/core/model/GpgSubKey.h | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/src/core/model/GpgSubKey.h b/src/core/model/GpgSubKey.h index c947b8af..920f42e8 100644 --- a/src/core/model/GpgSubKey.h +++ b/src/core/model/GpgSubKey.h @@ -96,7 +96,7 @@ class GPGFRONTEND_CORE_EXPORT GpgSubKey : public GpgAbstractKey { * @return true * @return false */ - [[nodiscard]] auto IsSubKey() const -> bool override; + [[nodiscard]] auto KeyType() const -> GpgAbstractKeyType override; /** * @brief @@ -111,6 +111,27 @@ class GPGFRONTEND_CORE_EXPORT GpgSubKey : public GpgAbstractKey { * * @return QString */ + [[nodiscard]] auto Name() const -> QString override; + + /** + * @brief + * + * @return QString + */ + [[nodiscard]] auto Email() const -> QString override; + + /** + * @brief + * + * @return QString + */ + [[nodiscard]] auto Comment() const -> QString override; + + /** + * @brief + * + * @return QString + */ [[nodiscard]] auto PublicKeyAlgo() const -> QString override; /** |