tools/templates/main.cpp
author unc0rr
Mon, 17 Mar 2014 00:41:45 +0400
changeset 10200 edc2fe0ca03f
parent 359 59fbfc65fbda
permissions -rw-r--r--
More math, implementation is nearly complete, just still have an issue to resolve

#include <QApplication>

#include "mainform.h"

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