tools/templates/main.cpp
author nemo
Sat, 30 Oct 2010 22:53:23 -0400
changeset 4043 4bf039d637df
parent 359 59fbfc65fbda
permissions -rw-r--r--
Oops. Restore the check as well

#include <QApplication>

#include "mainform.h"

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