LibreVNA/Software/PC_Application/VNA/portextensiondialog.h
2020-10-31 16:52:59 +01:00

26 lines
411 B
C++

#ifndef PORTEXTENSIONDIALOG_H
#define PORTEXTENSIONDIALOG_H
#include <QDialog>
namespace Ui {
class PortExtensionDialog;
}
class PortExtensionDialog : public QDialog
{
Q_OBJECT
public:
explicit PortExtensionDialog(QWidget *parent = nullptr);
~PortExtensionDialog();
private slots:
void on_buttonBox_accepted();
private:
Ui::PortExtensionDialog *ui;
};
#endif // PORTEXTENSIONDIALOG_H