Go to the documentation of this file.00001 #include <QtGui/QApplication>
00002 #include "mainwindow.h"
00003
00053 int main(int argc, char *argv[])
00054 {
00055 QApplication a(argc, argv);
00056 MainWindow w;
00057
00058
00059 QTimer::singleShot(50, &w, SLOT(setDefault()));
00060
00061 w.show();
00062
00063 return a.exec();
00064 }