tools/templates/main.cpp
author koda
Mon, 22 Feb 2016 16:01:29 -0500
changeset 11565 3db41c7697f0
parent 359 59fbfc65fbda
permissions -rw-r--r--
Info.plist: Set less important URLs to https

#include <QApplication>

#include "mainform.h"

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