tools/templates/main.cpp
author Xeli
Thu, 14 Jul 2011 15:41:26 +0200
branchhedgeroid
changeset 5412 ab055114c788
parent 359 59fbfc65fbda
permissions -rw-r--r--
Moved download classes to their own dir and fixed the way the dest dir is being 'build'

#include <QApplication>

#include "mainform.h"

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