tools/templates/main.cpp
author sheepluva
Fri, 06 Dec 2013 17:01:40 +0100
changeset 9757 9be28be004d4
parent 359 59fbfc65fbda
permissions -rw-r--r--
string tweaks and whitespace fixes

#include <QApplication>

#include "mainform.h"

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