tools/templates/main.cpp
author unc0rr
Wed, 06 May 2009 16:56:01 +0000
changeset 2029 51e164a40b41
parent 359 59fbfc65fbda
permissions -rw-r--r--
Add a tracing message to help debug rope bugs

#include <QApplication>

#include "mainform.h"

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