tools/templates/main.cpp
author nemo
Wed, 27 Jun 2012 07:58:16 -0400
changeset 7308 40aa797c4ef0
parent 359 59fbfc65fbda
permissions -rw-r--r--
Another try at the trace with more aggressive optimisation. Also tweaked the radial gradiant a bit to match the original more

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}