tools/templates/main.cpp
author nemo
Mon, 11 Mar 2013 12:20:59 -0400
changeset 8717 6e1ccd678e8a
parent 359 59fbfc65fbda
permissions -rw-r--r--
this should ensure those other voices play a bit more often.

#include <QApplication>

#include "mainform.h"

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