Bezig met crudmodel/tab

This commit is contained in:
eelke 2018-01-08 20:45:52 +01:00
parent ee321b3fb1
commit 14ab400ccb
15 changed files with 308 additions and 33 deletions

14
pglab/CrudTab.cpp Normal file
View file

@ -0,0 +1,14 @@
#include "CrudTab.h"
#include "ui_CrudTab.h"
CrudTab::CrudTab(QWidget *parent) :
QWidget(parent),
ui(new Ui::CrudTab)
{
ui->setupUi(this);
}
CrudTab::~CrudTab()
{
delete ui;
}