UnionComDLL/crc16.h

31 lines
415 B
C
Raw Normal View History

2025-03-11 14:41:08 +03:00
#ifndef CRC16_H
#define CRC16_H
#include <QWidget>
#include "ProjectSettings.h"
namespace Ui {
class CRC16;
}
class CRC16 : public QWidget
{
Q_OBJECT
public:
explicit CRC16(QWidget *parent = nullptr);
~CRC16();
private slots:
void on_buttonShowCRC_clicked();
void on_comboCountDLC_currentIndexChanged(int index);
private:
QLineEdit *arr [8];
Ui::CRC16 *ui;
};
#endif // CRC16_H