tools/templates/main.cpp
author nemo
Thu, 07 Jan 2010 16:18:32 +0000
changeset 2681 dcbb5e98afc7
parent 359 59fbfc65fbda
permissions -rw-r--r--
Drop the LongInt conversion, strip the two tests that are too large

#include <QApplication>

#include "mainform.h"

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