tools/templates/main.cpp
author sheepluva <sheepluva@users.noreply.github.com>
Fri, 28 Nov 2014 18:11:31 +0100
changeset 10567 9744ca2764d6
parent 359 59fbfc65fbda
permissions -rw-r--r--
Merge pull request #21 from LocutusOfBorg/exclude-git Excluding .git directory from the source tarball creation

#include <QApplication>

#include "mainform.h"

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