tools/drawMapTest/main.cpp
author sheepluva
Mon, 26 Sep 2011 00:15:10 +0200
changeset 6036 727d13409891
parent 4425 2314bb0c433d
permissions -rw-r--r--
small cleanup: enum instead of magic numbers

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

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