tools/drawMapTest/main.cpp
author Xeli
Thu, 14 Jul 2011 15:41:26 +0200
branchhedgeroid
changeset 5412 ab055114c788
parent 4425 2314bb0c433d
permissions -rw-r--r--
Moved download classes to their own dir and fixed the way the dest dir is being 'build'

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

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