tools/templates/main.cpp
author unc0rr
Thu, 09 Oct 2008 16:05:01 +0000
changeset 1335 c795cbc752c1
parent 359 59fbfc65fbda
permissions -rw-r--r--
Small optimization (use partition instead of two filters with opposite predicates)

#include <QApplication>

#include "mainform.h"

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