tools/drawMapTest/main.cpp
author nemo
Mon, 20 Mar 2017 08:58:30 -0400
changeset 12150 bbefbd1a3b0a
parent 4425 2314bb0c433d
permissions -rw-r--r--
sanity cutoff for splash sound

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

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