Files
pictureLibrary/cfilterpanel.cpp
T
2019-03-18 17:08:38 +01:00

15 lines
217 B
C++

#include "cfilterpanel.h"
#include "ui_cfilterpanel.h"
cFilterPanel::cFilterPanel(QWidget *parent) :
QWidget(parent),
ui(new Ui::cFilterPanel)
{
ui->setupUi(this);
}
cFilterPanel::~cFilterPanel()
{
delete ui;
}