tools/templates/main.cpp
author unc0rr
Thu, 11 Oct 2012 21:17:56 +0400
changeset 7744 75e1d0c0ba72
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Nicks starting from not-letter char go to bottom of the list - Small fixes

#include <QApplication>

#include "mainform.h"

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