tools/drawMapTest/main.cpp
author koda
Sun, 14 Apr 2013 22:57:13 +0200
changeset 8911 f17e505ef30b
parent 4425 2314bb0c433d
permissions -rw-r--r--
let's go with what nemo suggests

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

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