31 lines
415 B
C
31 lines
415 B
C
|
#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
|