tools/templates/main.cpp
author nemo
Sun, 24 Jan 2010 16:39:09 +0000
changeset 2711 e90b4e189be9
parent 359 59fbfc65fbda
permissions -rw-r--r--
If the music is going to be wrong, it can at least irritate me less.

#include <QApplication>

#include "mainform.h"

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