Mercurial > trustbridge
view ui/certificatelist.h @ 12:9121eea6d93f
Fix constructor usage. Too much Java.
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Fri, 14 Feb 2014 11:30:55 +0000 |
parents | fe39d93f1261 |
children | f4f957c58e0a |
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 "listutil.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<QByteArray> mCertificatesInstall; QList<QByteArray> mCertificatesRemove; list_status_t mStatus; QDateTime mDate; }; #endif