tools/drawMapTest/main.cpp
author unc0rr
Mon, 21 Jan 2013 12:22:33 +0400
changeset 8417 790492abc004
parent 4425 2314bb0c433d
permissions -rw-r--r--
Learn to properly localize strings with numbers pleeeeaaaase

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

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