tools/drawMapTest/main.cpp
author koda
Sun, 28 Oct 2012 04:31:16 +0100
changeset 7851 d4bda0201cae
parent 4425 2314bb0c433d
permissions -rw-r--r--
forgot to remove these files when reverting tremor

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

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