tools/templates/main.cpp
author smxx
Sun, 21 Feb 2010 16:32:43 +0000
changeset 2834 61f14237dc56
parent 359 59fbfc65fbda
permissions -rw-r--r--
General: * Don't set makefiles to verbose using debug config (should be enabled when changing CMakeLists.txt only)

#include <QApplication>

#include "mainform.h"

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