tools/templates/main.cpp
author nemo
Wed, 21 Nov 2018 15:41:43 -0500
changeset 14266 9b5a8147386f
parent 359 59fbfc65fbda
permissions -rw-r--r--
I think this is correct way to use iterate over it as a hashmap. don't have much lua practice

#include <QApplication>

#include "mainform.h"

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