summaryrefslogtreecommitdiffstats
path: root/examples/charts/chartsgallery/linewidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/charts/chartsgallery/linewidget.h')
-rw-r--r--examples/charts/chartsgallery/linewidget.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/examples/charts/chartsgallery/linewidget.h b/examples/charts/chartsgallery/linewidget.h
new file mode 100644
index 00000000..a4022463
--- /dev/null
+++ b/examples/charts/chartsgallery/linewidget.h
@@ -0,0 +1,16 @@
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+#ifndef LINEWIDGET_H
+#define LINEWIDGET_H
+
+#include "contentwidget.h"
+
+class LineWidget : public ContentWidget
+{
+ Q_OBJECT
+public:
+ explicit LineWidget(QWidget *parent = nullptr);
+};
+
+#endif