tools/templates/main.cpp
author nemo
Sun, 18 Oct 2009 12:53:00 +0000
changeset 2541 c9d04a8f739f
parent 359 59fbfc65fbda
permissions -rw-r--r--
Aaaand ease up on the onions a bit

#include <QApplication>

#include "mainform.h"

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