tools/templates/main.cpp
author nemo
Thu, 20 Mar 2014 13:12:05 -0400
changeset 10210 1a6b9a98147c
parent 359 59fbfc65fbda
permissions -rw-r--r--
hm. I think I forgot to commit this when adding speech bubble change

#include <QApplication>

#include "mainform.h"

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