tools/drawMapTest/main.cpp
author unc0rr
Tue, 19 Jun 2012 01:20:19 +0400
changeset 7265 3f96073156e1
parent 4425 2314bb0c433d
permissions -rw-r--r--
Output log to stdout instead of stderr

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

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