tools/templates/main.cpp
author nemo
Tue, 26 Jun 2018 23:20:28 -0400
changeset 13425 50f852e7ad82
parent 359 59fbfc65fbda
permissions -rw-r--r--
neglected dep update from r87a6cad20c90: that rev also forces nightly rust due to https://github.com/rust-lang/rust/issues/23121

#include <QApplication>

#include "mainform.h"

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