tools/templates/main.cpp
author nemo
Mon, 18 Feb 2013 14:06:16 -0500
changeset 8516 e422cbf9aa33
parent 359 59fbfc65fbda
permissions -rw-r--r--
pretty sure esc here is just a holdover from past, and has no use in rearranged implementation.

#include <QApplication>

#include "mainform.h"

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