aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/painter.cpp
blob: b04e3891b243c87920ac4ba22f329b97bd49236b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "ui/painter.h"
#include "ui_painter.h"

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

Painter::~Painter()
{
    delete _ui;
}