tools/templates/main.cpp
author nemo
Sat, 30 Oct 2010 21:48:47 -0400
changeset 4037 0f8ec120e90d
parent 359 59fbfc65fbda
permissions -rw-r--r--
set hasGone to prevent resurrection.

#include <QApplication>

#include "mainform.h"

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