tools/drawMapTest/main.cpp
author nemo
Sat, 28 Dec 2013 12:35:30 -0500
changeset 9875 7641e99c7633
parent 4425 2314bb0c433d
permissions -rw-r--r--
debian is pedantic and isn't aware this is just a dev comment

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

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