tools/drawMapTest/main.cpp
author nemo
Fri, 17 Jun 2011 11:58:27 -0400
changeset 5246 bc80445549e0
parent 4425 2314bb0c433d
permissions -rw-r--r--
merge of tsleon's updated russian. I assume unc0rr will vet the phrasing

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

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