tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Tue, 03 Nov 2015 23:33:32 +0100
changeset 11288 a3f3fc9af429
parent 11015 7a905f0070ce
permissions -rw-r--r--
merge changelog changes of 0.9.22 into default

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

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

    return a.exec();
}