diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-10-06 18:34:13 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-10-06 18:34:13 +0000 |
commit | 6e6c6ba937e311dec41766f1c81c26e5354ceb28 (patch) | |
tree | 24084ce193b4b0f658de18ca09e9f1c5dba8f705 /context.h | |
parent | removed doubled keyimport functions and actions from gpgwin (diff) | |
download | gpg4usb-6e6c6ba937e311dec41766f1c81c26e5354ceb28.tar.gz gpg4usb-6e6c6ba937e311dec41766f1c81c26e5354ceb28.zip |
added list for signinginformation and minor bugfix
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@540 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'context.h')
-rw-r--r-- | context.h | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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 { |