tools/drawMapTest/main.cpp
author nemo
Fri, 23 Nov 2018 16:38:47 -0500
changeset 14306 a7810074c20d
parent 4425 2314bb0c433d
permissions -rw-r--r--
these need casting too, but overall switching type is a win.

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

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