tools/drawMapTest/main.cpp
author unc0rr
Thu, 04 Jun 2015 19:57:04 +0300
branch0.9.21
changeset 10773 c91811e09361
parent 4425 2314bb0c433d
permissions -rw-r--r--
More ifdefs \o/ (fix build even more)

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

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