tools/drawMapTest/main.cpp
author sheepluva
Thu, 30 Aug 2012 20:42:29 +0200
changeset 7631 01b599d6f72d
parent 4425 2314bb0c433d
permissions -rw-r--r--
dos2unix newline fixes on 7 (video recording-)merged files

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

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