tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Mon, 16 May 2016 00:15:32 +0200
changeset 11825 bb6503b9847e
parent 11015 7a905f0070ce
permissions -rw-r--r--
remove another useless SysUtils include

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

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

    return a.exec();
}