tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Mon, 10 Aug 2015 03:53:11 +0200
changeset 11046 47a8c19ecb60
parent 11015 7a905f0070ce
permissions -rw-r--r--
more copyright fixes

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

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

    return a.exec();
}