Go to the documentation of this file.00001 #include <QtGui/QApplication>
00002 #include "mainwindow.h"
00003
00011 int main(int argc, char *argv[])
00012 {
00013 QApplication a(argc, argv);
00014 MainWindow w;
00015
00016 w.show();
00017
00018 return a.exec();
00019 }