tools/drawMapTest/main.cpp
author nemo
Sun, 13 Nov 2011 19:17:47 -0500
branch0.9.17
changeset 6368 cd819d9df6f6
parent 4425 2314bb0c433d
permissions -rw-r--r--
this one should not be delayed

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

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