tools/templates/main.cpp
author nemo
Sun, 17 May 2009 00:44:30 +0000
changeset 2069 f7fad4ad4455
parent 359 59fbfc65fbda
permissions -rw-r--r--
update only the stars - cuts CPU useage in half on my machine

#include <QApplication>

#include "mainform.h"

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