tools/drawMapTest/main.cpp
author nemo
Wed, 31 Aug 2011 14:47:01 -0400
changeset 5717 6d513913b7a9
parent 4425 2314bb0c433d
permissions -rw-r--r--
Add option for a bottom border. Needs testing.

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

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