tools/templates/main.cpp
author nemo
Mon, 09 Dec 2013 10:59:38 -0500
changeset 9769 5814e0c47c99
parent 359 59fbfc65fbda
permissions -rw-r--r--
Experiment in adding a "boing" graphic for bouncing. It has no text right now (was thinking l10n) and colour is fixed.

#include <QApplication>

#include "mainform.h"

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