tools/drawMapTest/main.cpp
author koda
Fri, 14 Jun 2013 01:11:22 +0200
changeset 9230 035cc97de6aa
parent 4425 2314bb0c433d
permissions -rw-r--r--
oops, forgot to set the path after all

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

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