pgLab/pglab/ApplicationWindow.cpp
eelke a99f059b70 Added list of constraints to the tables page.
Last column shows the full textual definition until I have decided on
a better way to visualize the details.
2017-12-30 13:02:40 +01:00

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;
}