tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Mon, 16 Jul 2018 22:59:58 +0300
changeset 13522 282e5e54386f
parent 11015 7a905f0070ce
permissions -rw-r--r--
Something down in the food chain already uses bitflags, so might as well switch to them

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

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

    return a.exec();
}