tools/drawMapTest/main.cpp
author unc0rr
Wed, 23 Oct 2013 22:25:17 +0400
changeset 9573 49bca2fabbd3
parent 4425 2314bb0c433d
permissions -rw-r--r--
Oh, dudes :( (reduce number of hacks; see, is it terribly hard to do it properly?)

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

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