summaryrefslogtreecommitdiff
path: root/development/performance/main.cpp
authorllornkcor <llornkcor>2003-07-08 23:43:32 (UTC)
committer llornkcor <llornkcor>2003-07-08 23:43:32 (UTC)
commitd94b6f057d7f4506a8b5d95a06ef36f0800e7848 (patch) (side-by-side diff)
treecb78d50a3107b95405818f1dc17069b8232a7d84 /development/performance/main.cpp
parent86cfa9479c119d581808f53f7b46e9cfeb127ccd (diff)
downloadopie-d94b6f057d7f4506a8b5d95a06ef36f0800e7848.zip
opie-d94b6f057d7f4506a8b5d95a06ef36f0800e7848.tar.gz
opie-d94b6f057d7f4506a8b5d95a06ef36f0800e7848.tar.bz2
graphics performance test
Diffstat (limited to 'development/performance/main.cpp') (more/less context) (show whitespace changes)
-rw-r--r--development/performance/main.cpp33
1 files changed, 33 insertions, 0 deletions
diff --git a/development/performance/main.cpp b/development/performance/main.cpp
new file mode 100644
index 0000000..8802777
--- a/dev/null
+++ b/development/performance/main.cpp
@@ -0,0 +1,33 @@
+/**********************************************************************
+** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
+**
+** This file is part of the Qtopia Environment.
+**
+** This file may be distributed and/or modified under the terms of the
+** GNU General Public License version 2 as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL included in the
+** packaging of this file.
+**
+** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
+** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+**
+** See http://www.trolltech.com/gpl/ for GPL licensing information.
+**
+** Contact info@trolltech.com if any conditions of this licensing are
+** not clear to you.
+**
+**********************************************************************/
+
+#include "performancetest.h"
+
+#include <qpe/qpeapplication.h>
+
+int main( int argc, char ** argv )
+{
+ QPEApplication a( argc, argv );
+
+ PerformanceTest mw;
+ a.showMainWidget( &mw );
+
+ return a.exec();
+}