tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Thu, 10 Dec 2015 00:33:45 +0300
branchqmlfrontend
changeset 11450 0c75fa9ce340
parent 11015 7a905f0070ce
permissions -rw-r--r--
- Use queues instead of single buffer to communicate between threads - Fix build

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

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

    return a.exec();
}