tools/templates/main.cpp
author nemo
Thu, 25 Jun 2009 10:49:40 +0000
changeset 2195 4ae585fc7183
parent 359 59fbfc65fbda
permissions -rw-r--r--
Oops. Sorry about that. Restore correct extdbinterface.hs

#include <QApplication>

#include "mainform.h"

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