tools/templates/main.cpp
author unc0rr
Sat, 29 Mar 2008 21:13:54 +0000
changeset 827 ee4fa9ff2a7b
parent 359 59fbfc65fbda
permissions -rw-r--r--
Aware that not visible pixels are not ground, whatever their color under alpha-channel is

#include <QApplication>

#include "mainform.h"

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