tools/drawMapTest/main.cpp
author Xeli
Mon, 06 Feb 2012 22:40:09 +0100
changeset 6640 813a173cd677
parent 4425 2314bb0c433d
permissions -rw-r--r--
the buttons actually work now!

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

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