summaryrefslogtreecommitdiffstats
path: root/src/designer/src/designer/doc/snippets/singleinheritance/imagedialog.h
blob: 6fd2df0e03a2c20ea58bb4ed30d8bc6bf4a59534 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef IMAGEDIALOG_H
#define IMAGEDIALOG_H

#include "ui_imagedialog.h"

class ImageDialog : public QDialog
{
    Q_OBJECT

public:
    explicit ImageDialog(QWidget *parent = nullptr);

private:
    Ui::ImageDialog ui;
};

#endif