tools/templates/main.cpp
author nemo
Wed, 29 Nov 2017 20:38:26 -0500
changeset 12848 076d00110223
parent 359 59fbfc65fbda
permissions -rw-r--r--
er. should be true I think? also... maybe this should be somewhere else

#include <QApplication>

#include "mainform.h"

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