tools/templates/main.cpp
author sheepluva <sheepluva@users.noreply.github.com>
Thu, 01 Oct 2015 12:17:42 +0200
changeset 11331 721210d689a5
parent 359 59fbfc65fbda
permissions -rw-r--r--
Merge pull request #35 from LocutusOfBorg/fedora merge

#include <QApplication>

#include "mainform.h"

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