tools/drawMapTest/main.cpp
author koda
Tue, 28 Jun 2011 01:05:33 +0200
branch0.9.15
changeset 4732 10f675aee907
parent 4425 2314bb0c433d
permissions -rw-r--r--
expose the available translations in the plist file for 0.9.15 (rf31d1073345e)

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

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