tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Wed, 02 Dec 2015 22:30:13 +0300
branchqmlfrontend
changeset 11446 908aed8525f9
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix LEFT command handling

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

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

    return a.exec();
}