tools/drawMapTest/main.cpp
author unc0rr
Sun, 13 Mar 2011 15:20:07 +0300
changeset 5006 6913d677c891
parent 4425 2314bb0c433d
permissions -rw-r--r--
- Remove not needed Show instances - Introduce BanInfo data type

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

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