tools/drawMapTest/main.cpp
author nemo
Thu, 21 Jun 2018 17:43:13 -0400
changeset 13420 cf189adc07fd
parent 4425 2314bb0c433d
permissions -rw-r--r--
Just to be kind to vim which is failing at sniffing

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

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