tools/drawMapTest/main.cpp
author nemo
Fri, 22 Sep 2017 18:07:11 -0400 (2017-09-22)
changeset 12498 f3d6f1b0b59d
parent 4425 2314bb0c433d
permissions -rw-r--r--
should be harder to dodge than a xor
#include <QtGui/QApplication>
#include "mainwindow.h"

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