tools/templates/main.cpp
author unc0rr
Sun, 18 Jan 2009 14:17:10 +0000
changeset 1698 993c42413387
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fallback to no hat when hat couldn't be loaded

#include <QApplication>

#include "mainform.h"

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