checks-parser/mainwindow.cpp

16 lines
275 B
C++

#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <iostream>
MainWindow::MainWindow(QWidget *parent)
: QWidget(parent)
, ui(new Ui::MainWindow) {
ui->setupUi(this);
std::cout << "test" << std::endl;
}
MainWindow::~MainWindow() {
delete ui;
}