tools/templates/main.cpp
author nemo
Tue, 14 Sep 2010 12:17:39 -0400
changeset 3866 561275a3f33b
parent 359 59fbfc65fbda
permissions -rw-r--r--
Revert accidental commit of inu's stretching of this column

#include <QApplication>

#include "mainform.h"

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