summaryrefslogtreecommitdiffstats
path: root/examples/charts/chartsgallery/boxplotwidget.h
blob: b498d438ee57b1bc6cb852cf40ce7346ac951d39 (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 BOXPLOTWIDGET_H
#define BOXPLOTWIDGET_H

#include "contentwidget.h"

class BoxPlotWidget : public ContentWidget
{
    Q_OBJECT
public:
    explicit BoxPlotWidget(QWidget *parent = nullptr);

protected:
    bool doLoad() override;
};

#endif