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

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}