summaryrefslogtreecommitdiff
path: root/development/performance/performancetest.h
Unidiff
Diffstat (limited to 'development/performance/performancetest.h') (more/less context) (ignore whitespace changes)
-rw-r--r--development/performance/performancetest.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/development/performance/performancetest.h b/development/performance/performancetest.h
new file mode 100644
index 0000000..c0a80c4
--- a/dev/null
+++ b/development/performance/performancetest.h
@@ -0,0 +1,18 @@
1
2#include "performancetestbase.h"
3
4class PerformanceTest : public PerformanceTestBase
5{
6 Q_OBJECT
7public:
8 PerformanceTest( QWidget *parent=0, const char *name=0, WFlags fl=0 );
9
10protected slots:
11 void testClicked( int );
12 void doTest();
13
14private:
15 QWidget *testWidget;
16 QArray<bool> enabledTests;
17};
18