00001 00002 #include "performancetestbase.h" 00003 00004 class PerformanceTest : public PerformanceTestBase 00005 { 00006 Q_OBJECT 00007 public: 00008 PerformanceTest( QWidget *parent=0, const char *name=0, WFlags fl=0 ); 00009 static QString appName() { return QString::fromLatin1("performance"); } 00010 00011 protected slots: 00012 void testClicked( int ); 00013 void doTest(); 00014 00015 private: 00016 QWidget *testWidget; 00017 QArray<bool> enabledTests; 00018 }; 00019
1.4.2