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
|