mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
2fe1dfe83a
We used to have a very sad way of controlling the statistics, now we will create the model when there's a need for it. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
12 lines
No EOL
221 B
C++
12 lines
No EOL
221 B
C++
#ifndef YEARLYSTATISTICSWIDGET_H
|
|
#define YEARLYSTATISTICSWIDGET_H
|
|
|
|
#include <QGraphicsView>
|
|
|
|
class YearlyStatisticsWidget : public QGraphicsView {
|
|
Q_OBJECT
|
|
public:
|
|
YearlyStatisticsWidget(QWidget *parent = 0);
|
|
};
|
|
|
|
#endif |