mirror of
https://github.com/jankae/LibreVNA.git
synced 2025-12-06 07:12:10 +01:00
25 lines
435 B
C
25 lines
435 B
C
|
|
#ifndef MANUALCALIBRATIONDIALOG_H
|
||
|
|
#define MANUALCALIBRATIONDIALOG_H
|
||
|
|
|
||
|
|
#include "calibration.h"
|
||
|
|
|
||
|
|
#include <QDialog>
|
||
|
|
|
||
|
|
namespace Ui {
|
||
|
|
class ManualCalibrationDialog;
|
||
|
|
}
|
||
|
|
|
||
|
|
class ManualCalibrationDialog : public QDialog
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit ManualCalibrationDialog(const TraceModel &model, Calibration *cal);
|
||
|
|
~ManualCalibrationDialog();
|
||
|
|
|
||
|
|
private:
|
||
|
|
Ui::ManualCalibrationDialog *ui;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // MANUALCALIBRATIONDIALOG_H
|