summaryrefslogtreecommitdiffstats
path: root/examples/charts/gallery/candlestickwidget.h
blob: 05bfac4e7ee1d64182f61a52c03773e222fe255a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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