mirror of
https://github.com/jankae/LibreVNA.git
synced 2025-12-06 07:12:10 +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
|