kde-workspace/libs/ksysguard/tests/graphicssignalplotterbenchmark.h
Ivailo Monev af45159765 generic: replace forward declarations with headers inclusions
this was done with namefsck script from Katie, solves namespace issues

Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
2019-05-05 02:36:36 +00:00

22 lines
436 B
C++

#include <QtTest>
#include <QtCore/qnamespace.h>
class KGraphicsSignalPlotter;
#include <QGraphicsView>
#include <QGraphicsScene>
class BenchmarkGraphicsSignalPlotter : public QObject
{
Q_OBJECT
private slots:
void init();
void cleanup();
void addData();
void addDataWhenHidden();
private:
KGraphicsSignalPlotter *s;
QGraphicsView *view;
QGraphicsScene *scene;
};