tools/templates/main.cpp
author unc0rr
Fri, 03 Apr 2009 16:35:59 +0000
changeset 1940 bbdca883b5f9
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Enable back border of drop-down list (by nemo) - Move const visibility to public... probably I'll make use of it in future (by me)

#include <QApplication>

#include "mainform.h"

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