summaryrefslogtreecommitdiffstats
path: root/tests/manual/examples/widgets/wiggly/dialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/examples/widgets/wiggly/dialog.h')
-rw-r--r--tests/manual/examples/widgets/wiggly/dialog.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/manual/examples/widgets/wiggly/dialog.h b/tests/manual/examples/widgets/wiggly/dialog.h
new file mode 100644
index 0000000000..1f27668f4a
--- /dev/null
+++ b/tests/manual/examples/widgets/wiggly/dialog.h
@@ -0,0 +1,19 @@
+// 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