tools/templates/main.cpp
author Xeli
Sat, 08 Oct 2011 14:52:16 +0200
branchhedgeroid
changeset 6037 8cdc7bc3e38c
parent 359 59fbfc65fbda
permissions -rw-r--r--
Allow for multicore compiling on quadcores, everyone has one right? :P It has perfomance benifits on single cores too so it's all good =)

#include <QApplication>

#include "mainform.h"

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