BuildLogViewer/main.cpp
author John Kern <johnk@symbian.org>
Fri, 13 Aug 2010 16:18:58 -0700
changeset 32 884c1b5354d7
parent 0 bbe0af256f1b
permissions -rwxr-xr-x
removed ui_mainwindow.h because it is generated by uic.exe

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

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