tools/drawMapTest/main.cpp
author Xeli
Sat, 08 Oct 2011 14:52:16 +0200
branchhedgeroid
changeset 6037 8cdc7bc3e38c
parent 4425 2314bb0c433d
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 <QtGui/QApplication>
#include "mainwindow.h"

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