Sh3/showcrc.h

27 lines
377 B
C
Raw Normal View History

2025-07-02 07:45:34 +03:00
#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