kde-extraapps/kgpg/editor/kgpgmd5widget.h
Ivailo Monev e166af4e02 generic: replace forward declarations with headers inclusions
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
2019-05-23 00:08:45 +00:00

38 lines
1,002 B
C++

/***************************************************************************
* *
* 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 KGPGMD5WIDGET_H
#define KGPGMD5WIDGET_H
#include <KDialog>
#include <KUrl>
#include <QLabel>
class KLed;
class Md5Widget : public KDialog
{
Q_OBJECT
public:
explicit Md5Widget(QWidget *parent = 0, const KUrl &url = KUrl());
public slots:
void slotApply();
private:
QString m_md5sum;
QLabel *m_label;
KLed *m_led;
};
#endif // KGPGMD5WIDGET_H