tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Fri, 12 Apr 2019 23:16:44 +0300
changeset 14801 f5d43f007970
parent 11015 7a905f0070ce
permissions -rw-r--r--
start by actually handling client messages

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

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

    return a.exec();
}