tools/templates/main.cpp
author nemo
Thu, 01 Apr 2010 16:08:09 +0000
changeset 3236 4ab3917d7d44
parent 359 59fbfc65fbda
permissions -rw-r--r--
Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010

#include <QApplication>

#include "mainform.h"

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