tools/hwmap2txt/hwmapconverter/main.cpp
author koda
Wed, 03 Jun 2015 14:50:54 +0100
changeset 10981 c92456ecdbad
parent 10936 104727dfaa1b
child 11015 7a905f0070ce
permissions -rw-r--r--
Update .hgignore file

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

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

    return a.exec();
}