tools/drawMapTest/main.cpp
author unc0rr
Mon, 29 Oct 2012 00:03:42 +0400
changeset 7863 34fc0644d231
parent 4425 2314bb0c433d
permissions -rw-r--r--
Slight update of russian translation

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

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