tools/drawMapTest/main.cpp
author unC0Rr
Fri, 02 Nov 2018 13:30:04 +0100
changeset 14077 5ade484f3351
parent 4425 2314bb0c433d
permissions -rw-r--r--
Refactor tests, add fn center() for Line

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

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