Files
pictureLibrary/cmainwindow.cpp
T
2019-02-04 14:08:51 +01:00

16 lines
215 B
C++

#include "cmainwindow.h"
#include "ui_cmainwindow.h"
cMainWindow::cMainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::cMainWindow)
{
ui->setupUi(this);
}
cMainWindow::~cMainWindow()
{
delete ui;
}