tools/templates/main.cpp
author unc0rr
Sat, 18 Apr 2009 12:46:56 +0000
changeset 2003 41b3d00949ca
parent 359 59fbfc65fbda
permissions -rw-r--r--
Patch by koda: - support for universal binaries - support for Tiger and Leopard systesms - small fix in chat

#include <QApplication>

#include "mainform.h"

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