tools/hwmap2txt/hwmapconverter/main.cpp
author Anton Malmygin <antonc27@mail.ru>
Wed, 15 May 2019 17:30:10 +0200
changeset 14962 947a4a4d2131
parent 11015 7a905f0070ce
permissions -rw-r--r--
Move build status higher

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

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

    return a.exec();
}