File indexing completed on 2024-04-28 16:49:47

0001 #ifndef KSYSGUARD_SIGNALPLOTTERBENCHMARK_H
0002 #define KSYSGUARD_SIGNALPLOTTERBENCHMARK_H
0003 
0004 #include <Qt>
0005 #include <QtTest>
0006 
0007 class KSignalPlotter;
0008 class BenchmarkSignalPlotter : public QObject
0009 {
0010     Q_OBJECT
0011 private slots:
0012     void init();
0013     void cleanup();
0014 
0015     void addData();
0016     void stackedData();
0017     void addDataWhenHidden();
0018 
0019 private:
0020     KSignalPlotter *s;
0021 };
0022 
0023 #endif // KSYSGUARD_SIGNALPLOTTERBENCHMARK_H