| 2 | #include "ui_mainwindow.h" |
| 3 | |
| 4 | MainWindow::MainWindow(QWidget *parent) |
| 5 | : QMainWindow(parent) |
| 6 | , ui(new Ui::MainWindow) |
| 7 | { |
| 8 | ui->setupUi(this); |
| 9 | } |
| 10 | |
| 11 | MainWindow::~MainWindow() |
| 12 | { |
nothing calls this directly
no outgoing calls
no test coverage detected