tools/drawMapTest/main.cpp
author unc0rr
Sun, 10 Apr 2011 20:36:09 +0400
changeset 5132 11d61349efcf
parent 4425 2314bb0c433d
permissions -rw-r--r--
Make WriteLnToConsole write to stderr instead of stdout

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

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