tools/templates/main.cpp
author sheepluva
Sat, 18 Jan 2014 18:20:43 +0100
changeset 10013 4d7302e9b617
parent 359 59fbfc65fbda
permissions -rw-r--r--
changing build files without testing the change is fun, isn't it? especially for trivial things that would take less than 10 seconds to test :p

#include <QApplication>

#include "mainform.h"

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