tools/drawMapTest/main.cpp
author koda
Sun, 31 Jul 2011 17:09:04 +0200
changeset 5484 1adde4aaedea
parent 4425 2314bb0c433d
permissions -rw-r--r--
i forgot to update schemes after adding tag mode; also updated/fixed a couple of them

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

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