tools/templates/main.cpp
author antonc27 <antonc27@mail.ru>
Thu, 15 Oct 2015 20:36:08 +0200
branchios-revival
changeset 11208 89f6c8cf60c8
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Timer button added to mobile touch controls

#include <QApplication>

#include "mainform.h"

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