tools/drawMapTest/main.cpp
author nemo
Mon, 24 Feb 2014 13:41:32 -0500
changeset 10159 5848ed144e0b
parent 4425 2314bb0c433d
permissions -rw-r--r--
move the freeModule too, couple of style tweaks

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

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