tools/templates/main.cpp
author unc0rr
Thu, 21 May 2009 17:41:26 +0000
changeset 2081 025507838f1d
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix City theme (could cause desyncs)

#include <QApplication>

#include "mainform.h"

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