tools/templates/main.cpp
author nemo
Tue, 26 Jun 2012 20:05:24 -0400
changeset 7305 b242e91a92a9
parent 359 59fbfc65fbda
permissions -rw-r--r--
Extend TARDIS away time a bit (minimum, range) to make it a bit more useful. Remove a couple of unused variables.

#include <QApplication>

#include "mainform.h"

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