summaryrefslogtreecommitdiffstats
path: root/examples/table/statistics/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/table/statistics/main.cpp')
-rw-r--r--examples/table/statistics/main.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/table/statistics/main.cpp b/examples/table/statistics/main.cpp
new file mode 100644
index 0000000..794bf1c
--- /dev/null
+++ b/examples/table/statistics/main.cpp
@@ -0,0 +1,20 @@
+/****************************************************************************
+**
+** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
+**
+** This file is part of an example program for Qt. This example
+** program may be used, distributed and modified without limitation.
+**
+*****************************************************************************/
+
+#include "statistics.h"
+#include <qapplication.h>
+int main( int argc, char **argv )
+{
+ QApplication a(argc,argv);
+
+ Table t;
+ a.setMainWidget( &t );
+ t.show();
+ return a.exec();
+}