tools/drawMapTest/main.cpp
author Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
Mon, 05 Jan 2015 16:29:27 +0100
changeset 10776 56e401fb45ea
parent 4425 2314bb0c433d
permissions -rw-r--r--
Rename test to test_normal, to comply with policy CMP0037

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

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