tools/drawMapTest/main.cpp
author koda
Wed, 04 May 2016 14:30:04 -0400
changeset 11804 7a8b6694a519
parent 4425 2314bb0c433d
permissions -rw-r--r--
linux on travis needs sudo to install dependencies

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

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