tools/drawMapTest/main.cpp
author unc0rr
Tue, 15 Feb 2011 21:12:22 +0300
changeset 4941 90572c338e60
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix for my last commit (which was all nonsense)

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

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