| 22 | using namespace SigDigger; |
| 23 | |
| 24 | DeviceDialog::DeviceDialog(QWidget *parent) : |
| 25 | QDialog(parent), |
| 26 | ui(new Ui::DeviceDialog) |
| 27 | { |
| 28 | ui->setupUi(this); |
| 29 | |
| 30 | this->connectAll(); |
| 31 | } |
| 32 | |
| 33 | DeviceDialog::~DeviceDialog() |
| 34 | { |
nothing calls this directly
no test coverage detected