tools/drawMapTest/main.cpp
author koda
Wed, 27 Apr 2016 01:03:15 -0400
changeset 11740 bb704a0f564d
parent 4425 2314bb0c433d
permissions -rw-r--r--
Drop duplicated include from CMakeLists.txt

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

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