/* * Copyright (C) 2008,2009 Rolf Eike Beer */ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef KGPGCHANGEEXPIRE_H #define KGPGCHANGEEXPIRE_H #include #include #include "kgpgeditkeytransaction.h" /** * @brief change the key lifetime */ class KGpgChangeExpire: public KGpgEditKeyTransaction { Q_OBJECT Q_DISABLE_COPY(KGpgChangeExpire) public: KGpgChangeExpire(QObject *parent, const QString &keyid, const QDateTime &date); virtual ~KGpgChangeExpire(); void setDate(const QDateTime &date); protected: virtual bool nextLine(const QString &line); private: QDateTime m_date; }; #endif // KGPGCHANGEEXPIRE_H