tools/templates/main.cpp
author nemo
Tue, 06 Sep 2011 17:10:03 -0400
changeset 5796 663eea4da344
parent 359 59fbfc65fbda
permissions -rw-r--r--
Another mass hat rename, because people were just about finished fixing their teams.

#include <QApplication>

#include "mainform.h"

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