tools/drawMapTest/main.cpp
author unc0rr
Sun, 19 Dec 2010 19:24:15 +0300
changeset 4561 da9d27bc6ea6
parent 4425 2314bb0c433d
permissions -rw-r--r--
Seems like just a source of bugs

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

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