tools/templates/main.cpp
author Henek
Sat, 25 Jun 2011 15:11:11 +0200
changeset 5308 c57a8878eebe
parent 359 59fbfc65fbda
permissions -rw-r--r--
fixing some different issues with edit team page and the new dual data setup

#include <QApplication>

#include "mainform.h"

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