tools/templates/main.cpp
author nemo
Mon, 18 Apr 2011 23:26:28 -0400
changeset 5160 37f0cd541c0a
parent 359 59fbfc65fbda
permissions -rw-r--r--
trying to make the umbrella and beachball seem a bit less cut out with a bit of beach sun/shade

#include <QApplication>

#include "mainform.h"

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