summaryrefslogtreecommitdiff
path: root/seentl.cpp
blob: 08ddbab3d867220499090fe1703664e884a2788d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "seentl.h"
#include "ui_seentl.h"

SEENTL::SEENTL(QWidget *parent)
    : QMainWindow(parent), ui(new Ui::SEENTLClass)
{
    ui->setupUi(this);
}

SEENTL::~SEENTL()
{
    delete ui;
}