tools/drawMapTest/main.cpp
author koda
Thu, 09 Dec 2010 22:50:16 +0100 (2010-12-09)
changeset 4488 e83216eba1db
parent 4425 2314bb0c433d
permissions -rw-r--r--
forgot to update these files
#include <QtGui/QApplication>
#include "mainwindow.h"

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