tools/drawMapTest/main.cpp
author nemo
Wed, 27 Jun 2012 13:47:42 -0400
changeset 7313 162bc562335b
parent 4425 2314bb0c433d
permissions -rw-r--r--
Use toUtf8 instead TODO - find out 'sactly what the website is using for hashes.

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

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