tools/templates/main.cpp
author nemo
Tue, 29 Jun 2010 23:30:49 -0400
changeset 3593 ae50f63e4fa9
parent 359 59fbfc65fbda
permissions -rw-r--r--
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.

#include <QApplication>

#include "mainform.h"

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