tools/drawMapTest/main.cpp
author unc0rr
Sun, 04 Dec 2011 00:52:47 +0300
changeset 6490 531bf083e8db
parent 4425 2314bb0c433d
permissions -rw-r--r--
- Give uLand more modularity - Get rid of some more nested functions

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

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