tools/hwmap2txt/hwmapconverter/main.cpp
author unC0Rr
Tue, 24 Nov 2015 12:09:41 +0300
branchqmlfrontend
changeset 11428 cc12bba5b2a2
parent 11015 7a905f0070ce
permissions -rw-r--r--
Support for protocol commands which are equal to suffix of another protocol command

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

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

    return a.exec();
}