tools/drawMapTest/main.cpp
author sheepluva
Tue, 27 Oct 2015 21:11:44 +0100
branchios-revival
changeset 11247 5c21ee975d5d
parent 4425 2314bb0c433d
permissions -rw-r--r--
somebody was so nice to mention me in credits, but misspelled my last name

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

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