blob: 2928b083fcafaad1881dea45e93c06b70bed424b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef INDEXERDIALOG_H
#define INDEXERDIALOG_H
#include <QDialog>
class IndexerWidget;
class IndexerDialog : public QDialog {
Q_OBJECT
public:
explicit IndexerDialog(QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
private:
IndexerWidget *mIndexer;
};
#endif // INDEXERDIALOG_H
|