tools/drawMapTest/main.cpp
author nemo
Tue, 27 Mar 2018 13:45:58 -0400
changeset 13285 fd1017c85dd4
parent 4425 2314bb0c433d
permissions -rw-r--r--
might as well put this after the last mining

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

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