tools/templates/main.cpp
author Xeli
Fri, 09 Sep 2011 04:39:17 +0200
branchhedgeroid
changeset 5733 5ab22736bdb6
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fixed a major bug (related to pointers) which also solves the stuttering when zooming in and out

#include <QApplication>

#include "mainform.h"

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