tools/templates/main.cpp
author unc0rr
Sat, 10 Jan 2009 12:47:54 +0000
changeset 1631 6e313b3818ef
parent 359 59fbfc65fbda
permissions -rw-r--r--
Remove debug stuff, ballgun 64but incompatibility fixed in previous revision

#include <QApplication>

#include "mainform.h"

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