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

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

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