tools/templates/main.cpp
author sheepluva
Sat, 07 Nov 2015 13:15:06 +0100 (2015-11-07)
changeset 11315 5b2f07e56b93
parent 359 59fbfc65fbda
permissions -rw-r--r--
merging ios-revival brain into default. includes updates to russian translation and general translation fixes
#include <QApplication>

#include "mainform.h"

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