tools/templates/main.cpp
author unc0rr
Sat, 02 Feb 2013 00:33:27 +0400
changeset 8474 f6abe50095d2
parent 359 59fbfc65fbda
permissions -rw-r--r--
Start work on the checker. Not it could connect to the server and... crash it.

#include <QApplication>

#include "mainform.h"

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