summaryrefslogtreecommitdiff
path: root/src/gui/previewwindow.h
blob: 5c4a384e9a9b1299804371262749f27e05c71663 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef PREVIEWWINDOW_H
#define PREVIEWWINDOW_H

#include <QDialog>

namespace Ui {
class PreviewWindow;
}

class PreviewWindow : public QDialog
{
    Q_OBJECT

public:
    explicit PreviewWindow(QWidget *parent = nullptr);
    ~PreviewWindow();

private:
    Ui::PreviewWindow *ui;
};

#endif // PREVIEWWINDOW_H