18 lines
314 B
C
18 lines
314 B
C
|
#ifndef COALSTATISTICSBARCHARTWIDGET_H
|
||
|
#define COALSTATISTICSBARCHARTWIDGET_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
class CoalStatisticsBarChartWidget : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit CoalStatisticsBarChartWidget(QWidget *parent = nullptr);
|
||
|
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
};
|
||
|
|
||
|
#endif // COALSTATISTICSBARCHARTWIDGET_H
|