tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur <mail@none>
Tue, 05 Feb 2019 17:46:43 +0300
changeset 14688 932ff7683653
parent 11015 7a905f0070ce
permissions -rw-r--r--
Server action refactoring part 8 of N

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

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

    return a.exec();
}