tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Sun, 13 Sep 2015 16:24:37 -0400
changeset 11171 546e75fdb879
parent 11015 7a905f0070ce
permissions -rw-r--r--
Oups. 6, not 12 - was testing

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

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

    return a.exec();
}