tools/drawMapTest/main.cpp
author koda
Thu, 22 Nov 2012 02:15:23 +0100
changeset 8095 df61e150eb70
parent 4425 2314bb0c433d
permissions -rw-r--r--
revisit the debugfile section

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

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