oft-requested, should make the shoppa guys happy, probably, but, knowing them, I'm sure someone will complain
#include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}