summaryrefslogtreecommitdiff
path: root/development/performance/performancetest.h
blob: a747c3c2aca8eb0ea83166d72f63375b0b74c2e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

#include "performancetestbase.h"

class PerformanceTest : public PerformanceTestBase
{
    Q_OBJECT
public:
    PerformanceTest( QWidget *parent=0, const char *name=0, WFlags fl=0 );
    static QString appName() { return QString::fromLatin1("performance"); }

protected slots:
    void testClicked( int );
    void doTest();

private:
    QWidget *testWidget;
    QArray<bool> enabledTests;
};