tools/templates/main.cpp
author nemo
Sun, 28 Jun 2009 16:44:04 +0000
changeset 2202 29508a2924c2
parent 359 59fbfc65fbda
permissions -rw-r--r--
Move count notification to all multishoot

#include <QApplication>

#include "mainform.h"

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