summaryrefslogtreecommitdiff
path: root/etcexp.cpp
blob: 4de12feb5192731e9aba326389948b7dc72fd288 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "etcexp.h"
#include "ui_etcexp.h"

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

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