tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Tue, 17 May 2016 23:29:49 +0300
branchqmlfrontend
changeset 11828 a69124eb7ce7
parent 11015 7a905f0070ce
permissions -rw-r--r--
Merge default

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

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

    return a.exec();
}