tools/templates/main.cpp
author nemo
Mon, 23 Dec 2013 12:52:39 -0500 (2013-12-23)
changeset 9827 ea09beb184e0
parent 359 59fbfc65fbda
permissions -rw-r--r--
Purely a whitespace change. Going to try to stick to consistent line endings in the future.
#include <QApplication>

#include "mainform.h"

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