tools/templates/main.cpp
author unc0rr
Thu, 24 Feb 2011 22:01:36 +0300
changeset 4959 09f4978b4fb0
parent 359 59fbfc65fbda
permissions -rw-r--r--
ShutdownException for server shutdown

#include <QApplication>

#include "mainform.h"

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