2021-05-02 00:34:53 +08:00
|
|
|
#ifndef FREQUENCYCALDIALOG_H
|
|
|
|
#define FREQUENCYCALDIALOG_H
|
|
|
|
|
|
|
|
#include "Device/device.h"
|
|
|
|
#include "mode.h"
|
|
|
|
|
2021-10-21 19:00:34 +08:00
|
|
|
#include <QDialog>
|
|
|
|
|
2021-05-02 00:34:53 +08:00
|
|
|
namespace Ui {
|
|
|
|
class FrequencyCalDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class FrequencyCalDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit FrequencyCalDialog(Device *dev, QWidget *parent = nullptr);
|
|
|
|
~FrequencyCalDialog();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::FrequencyCalDialog *ui;
|
|
|
|
Device *dev;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // FREQUENCYCALDIALOG_H
|