qt6windows7/tests/manual/examples/widgets/wiggly/dialog.h
2023-11-01 22:23:55 +01:00

20 lines
296 B
C++

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#ifndef DIALOG_H
#define DIALOG_H
#include <QDialog>
//! [0]
class Dialog : public QDialog
{
Q_OBJECT
public:
explicit Dialog(QWidget *parent = nullptr);
};
//! [0]
#endif