tools/drawMapTest/main.cpp
author koda
Sun, 13 Oct 2013 23:04:56 +0200
changeset 9535 08be603491c7
parent 4425 2314bb0c433d
permissions -rw-r--r--
and wrap the last variable so that the regex will never fail

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

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