tools/drawMapTest/main.cpp
author sheepluva
Thu, 11 Jun 2015 03:31:33 +0200
changeset 10992 995ecbdf72de
parent 4425 2314bb0c433d
permissions -rw-r--r--
hog number display: no blinking

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

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