mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-01-03 23:30:05 +01:00
18 lines
452 B
C++
18 lines
452 B
C++
#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
|