tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Sun, 02 Oct 2016 12:00:39 +0200
changeset 11866 8ba6b227f1dc
parent 11015 7a905f0070ce
permissions -rw-r--r--
travis: also add libghc-regex-tdfa-dev to dependencies

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

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

    return a.exec();
}