tools/hwmap2txt/hwmapconverter/main.cpp
author koda
Wed, 01 Nov 2017 16:09:20 -0400
changeset 12821 be7f05f83f8e
parent 11015 7a905f0070ce
permissions -rw-r--r--
travis: Install qt4 with a brew tap

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

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

    return a.exec();
}