tools/templates/main.cpp
author Wuzzy <almikes@aol.com>
Sat, 23 Sep 2017 09:35:45 +0200
changeset 12502 f4b0e164a0d5
parent 359 59fbfc65fbda
permissions -rw-r--r--
Chance that clicking the random hats button produces a set of equal hats

#include <QApplication>

#include "mainform.h"

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