initial commit

This commit is contained in:
2023-05-29 10:08:17 +02:00
parent 5073d69d72
commit 9b62a0cf6b
24 changed files with 414 additions and 25 deletions
+14
View File
@@ -0,0 +1,14 @@
#include "csearchdialog.h"
#include "ui_csearchdialog.h"
cSearchDialog::cSearchDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::cSearchDialog)
{
ui->setupUi(this);
}
cSearchDialog::~cSearchDialog()
{
delete ui;
}