tools/drawMapTest/main.cpp
author koda
Tue, 04 Dec 2012 03:27:12 +0100
branchflibqtfrontend
changeset 8216 4a7535d17d57
parent 4425 2314bb0c433d
permissions -rw-r--r--
readd this debug line, commented out, could be useful

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

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