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