tools/templates/main.cpp
author unc0rr
Fri, 24 Oct 2008 12:57:06 +0000
changeset 1404 2b6b6809c2e4
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Fix a bug in READY message handling - Fix frontend to use new semantics

#include <QApplication>

#include "mainform.h"

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