view ui/certificatelist.h @ 21:dc1e1e9e62ce

Add certificate class and use it
author Andre Heinecke <aheinecke@intevation.de>
date Thu, 20 Feb 2014 10:58:28 +0000
parents f4f957c58e0a
children 92108a2120f1
line wrap: on
line source
#ifndef CERTIFICATELIST_H
#define CERTIFICATELIST_H
/**
 * This class handles a certificate list file.
 * It checks for the validity of that certificate
 * list file and provides an API for working with that
 * file.
 *
 * The List is parsed on Initialization. You should
 * check the Status afterwards to see if the file
 * could be parsed.
 *
 */

class QByteArray;

#include <QString>
#include <QDateTime>
#include <QObject>

#include "../cinst/listutil.h"
#include "certificate.h"

class CertificateList : public QObject
{
    Q_OBJECT

public:
    CertificateList(const char *fileName);

    list_status_t getStatus() {return mStatus;}
    bool isValid() {return mStatus == Valid;}

private:
    QString mFileName;
    QList<Certificate> mCertificatesInstall;
    QList<Certificate> mCertificatesRemove;
    list_status_t mStatus;
    QDateTime mDate;
};
#endif

http://wald.intevation.org/projects/trustbridge/