tools/templates/main.cpp
author nemo
Thu, 13 Feb 2014 14:12:04 -0500
changeset 10136 f0da90f58c98
parent 359 59fbfc65fbda
permissions -rw-r--r--
pngcrush on this file which will hopefully be cleaned up at some point

#include <QApplication>

#include "mainform.h"

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