tools/drawMapTest/main.cpp
author koda
Sat, 05 May 2012 19:04:59 +0100
changeset 7028 0f60591f3a16
parent 4425 2314bb0c433d
permissions -rw-r--r--
old typed const moved to their proper unit

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

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