tools/templates/main.cpp
author nemo
Mon, 22 Jun 2009 00:27:55 +0000
changeset 2189 bf6eafc3b2e6
parent 359 59fbfc65fbda
permissions -rw-r--r--
allow brief ground touches

#include <QApplication>

#include "mainform.h"

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