BuildLogViewer/main.cpp
author John Kern <johnk@symbian.org>
Thu, 26 Aug 2010 10:26:51 -0700
changeset 39 3ed811ba9e2e
parent 0 bbe0af256f1b
permissions -rwxr-xr-x
added Ians wish lists

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}