tools/templates/main.cpp
author unc0rr
Fri, 08 May 2009 18:20:06 +0000
changeset 2039 3001445b4500
parent 359 59fbfc65fbda
permissions -rw-r--r--
Try to prevent locale problems: - Consider only strings starting from numbers - Fill strings with en locale first

#include <QApplication>

#include "mainform.h"

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