tools/templates/main.cpp
author unc0rr
Tue, 05 Aug 2008 20:57:08 +0000
changeset 1152 c72b939c00df
parent 359 59fbfc65fbda
permissions -rw-r--r--
Make buttons border have different colors when mouse is over or it is pressed

#include <QApplication>

#include "mainform.h"

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