Init
This commit is contained in:
26
showcrc.h
Normal file
26
showcrc.h
Normal file
@@ -0,0 +1,26 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user