tools/hwmap2txt/hwmapconverter/main.cpp
author KoBeWi
Thu, 08 Feb 2018 09:14:20 +0100
changeset 12923 305f3667af20
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix how scheme files behave

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

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

    return a.exec();
}