blob: 930f60881a46acafd053b9e049b429532e1284c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QtWidgets/QDialog>
#ifndef TEXTDIALOG_H
#define TEXTDIALOG_H
class TextDialog : public QDialog
{
public:
explicit TextDialog(const QString &text, QWidget *parent = nullptr);
};
#endif
|