tools/drawMapTest/main.cpp
author sheepluva
Tue, 12 Jan 2016 22:12:16 +0100
changeset 11501 2d72489cc5b6
parent 4425 2314bb0c433d
permissions -rw-r--r--
finish SDL2-window focus change detection code

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

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