tools/templates/main.cpp
author smxx
Sat, 27 Mar 2010 21:04:38 +0000
changeset 3127 9ebdc21aba87
parent 359 59fbfc65fbda
permissions -rw-r--r--
CMake * I must not eat melon bombs * I must not eat melon bombs

#include <QApplication>

#include "mainform.h"

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