aboutsummaryrefslogtreecommitdiffstats
path: root/context.h
diff options
context:
space:
mode:
Diffstat (limited to 'context.h')
-rw-r--r--context.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/context.h b/context.h
index e15eabb..3b834e4 100644
--- a/context.h
+++ b/context.h
@@ -51,6 +51,19 @@ public:
typedef QLinkedList< GpgKey > GpgKeyList;
+class GpgSignature
+{
+public:
+ QString fpr;
+ QString name;
+ QString email;
+ gpgme_error_t signStatusCode;
+ QString signStatusString;
+ bool presentInKeyList;
+};
+
+typedef QLinkedList< GpgSignature > GpgSignatureList;
+
namespace GpgME
{