tools/drawMapTest/main.cpp
author sheepluva
Fri, 06 May 2016 20:00:55 +0200
changeset 11810 42c11b73f68e
parent 4425 2314bb0c433d
permissions -rw-r--r--
<unC0Rr> might be somewhere width used instead of rightx

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

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