mirror of
https://github.com/leozide/leocad
synced 2024-12-25 21:58:23 +01:00
14 lines
278 B
C++
14 lines
278 B
C++
#include "lc_setsdatabasedialog.h"
|
|
#include "ui_lc_setsdatabasedialog.h"
|
|
|
|
lcSetsDatabaseDialog::lcSetsDatabaseDialog(QWidget* Parent)
|
|
: QDialog(Parent),
|
|
ui(new Ui::lcSetsDatabaseDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
lcSetsDatabaseDialog::~lcSetsDatabaseDialog()
|
|
{
|
|
delete ui;
|
|
}
|