diff options
Diffstat (limited to 'indexerdialog.h')
-rw-r--r-- | indexerdialog.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/indexerdialog.h b/indexerdialog.h new file mode 100644 index 0000000..2928b08 --- /dev/null +++ b/indexerdialog.h @@ -0,0 +1,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 |