tools/drawMapTest/main.cpp
author sheepluva
Thu, 25 Aug 2011 18:29:46 +0200
changeset 5683 8a5efade0b93
parent 4425 2314bb0c433d
permissions -rw-r--r--
reduce effect of the look-ahead behaviour that I tried to implement

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

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