Last column shows the full textual definition until I have decided on a better way to visualize the details.
14 lines
256 B
C++
14 lines
256 B
C++
#include "ApplicationWindow.h"
|
|
#include "ui_ApplicationWindow.h"
|
|
|
|
ApplicationWindow::ApplicationWindow(QWidget *parent) :
|
|
QMainWindow(parent),
|
|
ui(new Ui::ApplicationWindow)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
ApplicationWindow::~ApplicationWindow()
|
|
{
|
|
delete ui;
|
|
}
|