You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wheeldetect/src/tpMain/qdia2thsetting.h

26 lines
414 B
C

#ifndef QDIA2THSETTING_H
#define QDIA2THSETTING_H
#include <QDialog>
#include "ui_qdia2thsetting.h"
class QDia2ThSetting : public QDialog
{
Q_OBJECT
public:
QDia2ThSetting(QWidget *parent = 0);
~QDia2ThSetting();
void SetValue(float *m_B, float *m_K);
Q_SLOT void onChangeValue();
signals:
void sgSavePara();
private:
Ui::QDia2ThSetting ui;
float *m_nB;
float *m_nK;
};
#endif // QDIA2THSETTING_H