tools/drawMapTest/main.cpp
author nemo
Thu, 01 Nov 2012 08:59:16 -0400
changeset 7919 c7d258a4358e
parent 4425 2314bb0c433d
permissions -rw-r--r--
Small fixes to b-day image. For next year I 'spose

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

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