Mercurial > trustbridge
comparison ui/certificatelist.h @ 79:1dd8e91972a8
Add accessors to certificate's in certificatelist
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Wed, 19 Mar 2014 16:35:49 +0000 |
parents | 64c8c6350e60 |
children | 00a93409e93e |
comparison
equal
deleted
inserted
replaced
78:2f5db8c70bc2 | 79:1dd8e91972a8 |
---|---|
42 * A list is valid only if the signature matched and the | 42 * A list is valid only if the signature matched and the |
43 * list could be parsed. | 43 * list could be parsed. |
44 */ | 44 */ |
45 bool isValid() const {return mStatus == Valid;} | 45 bool isValid() const {return mStatus == Valid;} |
46 | 46 |
47 const QList<Certificate>& getCertificates() const; | 47 const QList<Certificate>& getInstallCertificates() const; |
48 const QList<Certificate>& getRemoveCertificates() const; | |
48 | 49 |
49 private: | 50 private: |
50 QString mFileName; | 51 QString mFileName; |
51 QList<Certificate> mCertificatesInstall; | 52 QList<Certificate> mCertificatesInstall; |
52 QList<Certificate> mCertificatesRemove; | 53 QList<Certificate> mCertificatesRemove; |