tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Tue, 26 Mar 2019 22:55:30 +0300
changeset 14723 766ce87dfdfc
parent 11015 7a905f0070ce
permissions -rw-r--r--
finetune atlas proptest

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

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

    return a.exec();
}