tools/drawMapTest/main.cpp
author nemo
Fri, 11 Oct 2013 13:06:04 -0400
changeset 9524 0a52c1dd9400
parent 4425 2314bb0c433d
permissions -rw-r--r--
disable side borders if bounce or wrap

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

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