tools/templates/main.cpp
author unc0rr
Tue, 25 Nov 2008 15:43:10 +0000
changeset 1512 43742041c211
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Don't send 'Bad param' msg, as the only reason of it is just some lag - Show quit reason message

#include <QApplication>

#include "mainform.h"

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