tools/drawMapTest/main.cpp
author sheepluva
Sat, 15 Oct 2016 13:28:13 +0200
changeset 11876 9e0b20330d05
parent 4425 2314bb0c433d
permissions -rw-r--r--
rename variables for better code-readability and fix indentation

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

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