tools/hwmap2txt/hwmapconverter/main.cpp
author koda
Wed, 27 Apr 2016 01:03:15 -0400
changeset 11745 bb704a0f564d
parent 11015 7a905f0070ce
permissions -rw-r--r--
Drop duplicated include from CMakeLists.txt

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

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

    return a.exec();
}