LibreVNA/Software/PC_Application/Calibration/sourcecaldialog.h

18 lines
452 B
C
Raw Normal View History

2020-11-17 03:05:29 +08:00
#ifndef SOURCECALDIALOG_H
#define SOURCECALDIALOG_H
#include <QObject>
#include "amplitudecaldialog.h"
class SourceCalDialog : public AmplitudeCalDialog
{
Q_OBJECT
public:
SourceCalDialog(Device *dev);
protected:
Protocol::PacketType requestCommand() override { return Protocol::PacketType::RequestSourceCal; }
Protocol::PacketType pointType() override { return Protocol::PacketType::SourceCalPoint; }
};
#endif // SOURCECALDIALOG_H