tools/drawMapTest/main.cpp
author belphegorr <szabibibi@gmail.com>
Sun, 19 Aug 2012 12:50:34 +0300
changeset 7490 c422845b8d1f
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fixed a typo, frontend is now working properly

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

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