tools/drawMapTest/main.cpp
author nemo
Sun, 17 Mar 2013 10:13:14 -0400
changeset 8742 b7b8bd398c1b
parent 4425 2314bb0c433d
permissions -rw-r--r--
Key returned 0 for arrows under linux. Sym works, clearer anyway.

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

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