tools/drawMapTest/main.cpp
author y2kbugxp90@gmail.com
Sun, 10 Apr 2011 05:09:41 +0000
changeset 5131 137f9cb80be6
parent 4425 2314bb0c433d
permissions -rw-r--r--
Got a start on localizing all these strings.

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

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