summaryrefslogtreecommitdiff
path: root/development/performance/performancetest.h
Side-by-side diff
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 @@
+
+#include "performancetestbase.h"
+
+class PerformanceTest : public PerformanceTestBase
+{
+ Q_OBJECT
+public:
+ PerformanceTest( QWidget *parent=0, const char *name=0, WFlags fl=0 );
+
+protected slots:
+ void testClicked( int );
+ void doTest();
+
+private:
+ QWidget *testWidget;
+ QArray<bool> enabledTests;
+};
+