tools/templates/main.cpp
author nemo
Sun, 28 Jun 2009 14:39:18 +0000
changeset 2201 6b14d6da9a49
parent 359 59fbfc65fbda
permissions -rw-r--r--
some win32 dll export thingy.

#include <QApplication>

#include "mainform.h"

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