tools/drawMapTest/main.cpp
author koda
Thu, 16 Dec 2010 00:48:32 +0100
changeset 4539 bad3411cba49
parent 4425 2314bb0c433d
permissions -rw-r--r--
store the (future) password with md5 for ifrontend

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

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