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