tools/drawMapTest/main.cpp
author sheepluva
Tue, 28 Aug 2012 21:59:49 +0200
changeset 7618 4d3a32d91028
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix build for me

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

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