15 lines
229 B
C++
15 lines
229 B
C++
|
#include "searchdialog.h"
|
||
|
#include "ui_searchdialog.h"
|
||
|
|
||
|
SearchDialog::SearchDialog(QWidget *parent) :
|
||
|
QDialog(parent),
|
||
|
ui(new Ui::SearchDialog)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
SearchDialog::~SearchDialog()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|