27 lines
377 B
C
27 lines
377 B
C
|
#ifndef SHOWCRC_H
|
||
|
#define SHOWCRC_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include "widget.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class showCRC;
|
||
|
}
|
||
|
|
||
|
class showCRC : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit showCRC(QWidget *parent = 0);
|
||
|
~showCRC();
|
||
|
|
||
|
private slots:
|
||
|
void on_pushButton_clicked();
|
||
|
void closeEvent(QCloseEvent *event);
|
||
|
private:
|
||
|
Ui::showCRC *ui;
|
||
|
};
|
||
|
|
||
|
#endif // SHOWCRC_H
|