23 lines
305 B
C
23 lines
305 B
C
|
#ifndef SEARCHDIALOG_H
|
||
|
#define SEARCHDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class SearchDialog;
|
||
|
}
|
||
|
|
||
|
class SearchDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit SearchDialog(QWidget *parent = nullptr);
|
||
|
~SearchDialog();
|
||
|
|
||
|
private:
|
||
|
Ui::SearchDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // SEARCHDIALOG_H
|