mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 03:59:59 +08:00
18 lines
306 B
C++
18 lines
306 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef MYDIALOG_H
|
|
#define MYDIALOG_H
|
|
|
|
#include "ui_mydialog.h"
|
|
|
|
class MyDialog : public QDialog, public Ui::MyDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MyDialog(QWidget *parent = nullptr);
|
|
};
|
|
|
|
#endif
|